summaryrefslogtreecommitdiff
path: root/lib/custodian/protocol-tests/jabber.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/custodian/protocol-tests/jabber.rb')
-rwxr-xr-xlib/custodian/protocol-tests/jabber.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/custodian/protocol-tests/jabber.rb b/lib/custodian/protocol-tests/jabber.rb
index 7a0c855..a35ef28 100755
--- a/lib/custodian/protocol-tests/jabber.rb
+++ b/lib/custodian/protocol-tests/jabber.rb
@@ -82,11 +82,11 @@ class JABBERTest
socket.puts( "QUIT")
banner = socket.gets(nil)
- banner = banner[0,20]
+ banner = banner[0,20] unless( banner.nil? )
socket.close()
- if ( banner =~ /xml version/i )
+ if ( ( !banner.nil? ) && ( banner =~ /xml version/i ) )
puts "Jabber alive: #{banner}" if ( @test_data['verbose'] )
return true
else