summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2013-05-13 16:41:57 +0100
committerSteve Kemp <steve@steve.org.uk>2013-05-13 16:41:57 +0100
commitb2e1b858c4c150fac2ecd94b17b02ee987cdf143 (patch)
tree28c21fc6c3e8c65e27545a17e35c9fff3c18aaac /lib
parent835add4d1ee07a6c44470a4d466fa2219550b8bc (diff)
Really use sysread.
Diffstat (limited to 'lib')
-rw-r--r--lib/custodian/protocoltest/tcp.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/protocoltest/tcp.rb b/lib/custodian/protocoltest/tcp.rb
index 30a1423..822b82c 100644
--- a/lib/custodian/protocoltest/tcp.rb
+++ b/lib/custodian/protocoltest/tcp.rb
@@ -147,7 +147,7 @@ module Custodian
# read a banner from the remote server, if we're supposed to.
read = nil
- read = socket.gets(1024) if ( do_read )
+ read = socket.sysread(1024) if ( do_read )
# trim to a sane length & strip newlines.
read = read[0,255] unless ( read.nil? )