diff options
Diffstat (limited to 'clientloop.c')
-rw-r--r-- | clientloop.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clientloop.c b/clientloop.c index 0ee9fc32a..382cfe1f3 100644 --- a/clientloop.c +++ b/clientloop.c | |||
@@ -16,7 +16,7 @@ | |||
16 | */ | 16 | */ |
17 | 17 | ||
18 | #include "includes.h" | 18 | #include "includes.h" |
19 | RCSID("$Id: clientloop.c,v 1.13 2000/04/30 00:00:54 damien Exp $"); | 19 | RCSID("$Id: clientloop.c,v 1.14 2000/05/07 02:03:16 damien Exp $"); |
20 | 20 | ||
21 | #include "xmalloc.h" | 21 | #include "xmalloc.h" |
22 | #include "ssh.h" | 22 | #include "ssh.h" |
@@ -971,7 +971,7 @@ client_input_channel_open(int type, int plen) | |||
971 | rwindow = packet_get_int(); | 971 | rwindow = packet_get_int(); |
972 | rmaxpack = packet_get_int(); | 972 | rmaxpack = packet_get_int(); |
973 | 973 | ||
974 | log("server_input_open: ctype %s rchan %d win %d max %d", | 974 | debug("client_input_channel_open: ctype %s rchan %d win %d max %d", |
975 | ctype, rchan, rwindow, rmaxpack); | 975 | ctype, rchan, rwindow, rmaxpack); |
976 | 976 | ||
977 | if (strcmp(ctype, "x11") == 0) { | 977 | if (strcmp(ctype, "x11") == 0) { |
@@ -1077,7 +1077,7 @@ client_input_channel_req(int id, void *arg) | |||
1077 | rtype = packet_get_string(&len); | 1077 | rtype = packet_get_string(&len); |
1078 | reply = packet_get_char(); | 1078 | reply = packet_get_char(); |
1079 | 1079 | ||
1080 | debug("session_input_channel_req: rtype %s reply %d", rtype, reply); | 1080 | debug("client_input_channel_req: rtype %s reply %d", rtype, reply); |
1081 | 1081 | ||
1082 | c = channel_lookup(id); | 1082 | c = channel_lookup(id); |
1083 | if (c == NULL) | 1083 | if (c == NULL) |