diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2003-01-01 18:08:53 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2003-01-01 18:08:53 +0000 |
commit | e60a23b69678e8ea276e2e2f3e17ecc02b87d3cb (patch) | |
tree | 9446197884d71db6aabbd2a4031bb76ba7096801 /usr.bin/ssh | |
parent | c9767a5a8e354e8f74bc88b73ee8aed1830d0c9e (diff) |
move big output buffer messages to debug2
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/channels.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/channels.c b/usr.bin/ssh/channels.c index b704e090fce..9e76c337ec8 100644 --- a/usr.bin/ssh/channels.c +++ b/usr.bin/ssh/channels.c @@ -39,7 +39,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: channels.c,v 1.184 2002/12/13 10:03:15 markus Exp $"); +RCSID("$OpenBSD: channels.c,v 1.185 2003/01/01 18:08:52 markus Exp $"); #include "ssh.h" #include "ssh1.h" @@ -412,13 +412,13 @@ channel_not_very_much_buffered_data(void) #if 0 if (!compat20 && buffer_len(&c->input) > packet_get_maxsize()) { - debug("channel %d: big input buffer %d", + debug2("channel %d: big input buffer %d", c->self, buffer_len(&c->input)); return 0; } #endif if (buffer_len(&c->output) > packet_get_maxsize()) { - debug("channel %d: big output buffer %d > %d", + debug2("channel %d: big output buffer %d > %d", c->self, buffer_len(&c->output), packet_get_maxsize()); return 0; |