Skip to content
Snippets Groups Projects
Commit c34c5ba8 authored by Marcus Comstedt's avatar Marcus Comstedt
Browse files

Small bugfix.

Rev: lib/modules/Remote.pmod/connection.pike:1.6
parent c5ac632a
No related branches found
No related tags found
No related merge requests found
...@@ -165,7 +165,7 @@ void handshake(int ignore, string s) ...@@ -165,7 +165,7 @@ void handshake(int ignore, string s)
{ {
string proto; string proto;
if ((sscanf(read_buffer, "Pike remote client %4s\n", proto) == 1) && if ((sscanf(read_buffer, "Pike remote client %4s\n", proto) == 1) &&
(proto = PROTO_VERSION)) (proto == PROTO_VERSION))
{ {
DEBUGMSG("handshake complete (proto="+proto+")\n"); DEBUGMSG("handshake complete (proto="+proto+")\n");
read_buffer = read_buffer[24..]; read_buffer = read_buffer[24..];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment