diff options
| author | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:15:06 +0000 | 
|---|---|---|
| committer | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:15:06 +0000 | 
| commit | e950dc3c5163f1305deffede93e77209e90ecacb (patch) | |
| tree | e580fe21c6cd560ffcbb1452ccd618dc74faeefd /lib/custodian/protocoltest | |
| parent | 3acb2e1be6ddeb421efbd1b3598c1ed547d1b38b (diff) | |
Do not terminate expressions with ";".
Ruby is not Perl, much as I sometimes wish it were.
Diffstat (limited to 'lib/custodian/protocoltest')
| -rw-r--r-- | lib/custodian/protocoltest/mx.rb | 2 | ||||
| -rw-r--r-- | lib/custodian/protocoltest/ssl.rb | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/lib/custodian/protocoltest/mx.rb b/lib/custodian/protocoltest/mx.rb index b77e596..0df1b5d 100644 --- a/lib/custodian/protocoltest/mx.rb +++ b/lib/custodian/protocoltest/mx.rb @@ -144,7 +144,7 @@ module Custodian            @error = "There are #{mx.size} hosts running as MX-servers for domain #{@host} - #{passed}:OK #{failed}:FAILED - #{error}"            return false          else -          return true; +          return true          end        end diff --git a/lib/custodian/protocoltest/ssl.rb b/lib/custodian/protocoltest/ssl.rb index 9f65712..86acb34 100644 --- a/lib/custodian/protocoltest/ssl.rb +++ b/lib/custodian/protocoltest/ssl.rb @@ -427,7 +427,7 @@ module Custodian            return true          else            puts( "SSL Verification for #{@host} has failed." ) -          @error  = "SSL Verification for #{@host} failed: "; +          @error  = "SSL Verification for #{@host} failed: "            @error +=  s.errors.join("\n")            return false          end | 
