Skip to content

Commit 8ea0953

Browse files
committed
removed a debugging line
1 parent a6c7f93 commit 8ea0953

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

lib/rex/proto/rfb/client.rb

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,13 @@ def handshake
6262
@minver = $2.to_i
6363

6464
# Forces client version 3 to be used. This adds support
65-
# version 4 servers.
65+
# for version 4 servers.
6666
# It may be necessary to hardcode a miniver as well
6767
# to do: add support for Version 4. Version 4 client
6868
# adds additional information to the packet regarding
6969
# supported authentication types.
7070
our_ver = "RFB %03d.%03d\n" % [3, @minver]
71-
puts our_ver
72-
@sock.put(our_ver)
71+
@sock.put(our_ver)
7372

7473
true
7574
end

0 commit comments

Comments
 (0)