summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/custodian/protocoltest/ssl.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/custodian/protocoltest/ssl.rb b/lib/custodian/protocoltest/ssl.rb
index 4d4ee2f..a604f80 100644
--- a/lib/custodian/protocoltest/ssl.rb
+++ b/lib/custodian/protocoltest/ssl.rb
@@ -19,7 +19,7 @@ class SSLCheck
# This is a helper for console-debugging.
def verbose( msg )
- # nop
+ return(msg)
end
#
@@ -415,8 +415,8 @@ module Custodian
puts( "SSL Verification returned no result (timeout?) #{@host}" )
return true
else
- puts( "SSL certificate check for #{@host} has failed." )
- @error = "SSL certificate check for #{@host} failed: ";
+ puts( "SSL Verification for #{@host} has failed." )
+ @error = "SSL Verification for #{@host} failed: ";
@error += s.errors.join("\n")
return false
end