diff options
author | 2001-05-28 23:25:24 +0000 | |
---|---|---|
committer | 2001-05-28 23:25:24 +0000 | |
commit | be3273378bfb59a49b3507792588079d267c8c96 (patch) | |
tree | 026e2bed87bb1ae03bfc40c843a6529018db5592 /usr.bin/ssh/channels.c | |
parent | undo broken channel fix and try a different one. there (diff) | |
download | wireguard-openbsd-be3273378bfb59a49b3507792588079d267c8c96.tar.xz wireguard-openbsd-be3273378bfb59a49b3507792588079d267c8c96.zip |
cleanup, typo
Diffstat (limited to 'usr.bin/ssh/channels.c')
-rw-r--r-- | usr.bin/ssh/channels.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/usr.bin/ssh/channels.c b/usr.bin/ssh/channels.c index 800bc9b7d0a..b465c1cd296 100644 --- a/usr.bin/ssh/channels.c +++ b/usr.bin/ssh/channels.c @@ -40,7 +40,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: channels.c,v 1.118 2001/05/28 23:14:49 markus Exp $"); +RCSID("$OpenBSD: channels.c,v 1.119 2001/05/28 23:25:24 markus Exp $"); #include <openssl/rsa.h> #include <openssl/dsa.h> @@ -312,12 +312,11 @@ channel_free(Channel *c) for (n = 0, i = 0; i < channels_alloc; i++) if (channels[i]) n++; - - debug("channel_free: channel %d: (%s) nchannels: %d", c->self, + debug("channel_free: channel %d: %s, nchannels %d", c->self, c->remote_name ? c->remote_name : "???", n); s = channel_open_message(); - debug3("channel_free: status: %s", c->self, s); + debug3("channel_free: status: %s", s); xfree(s); if (c->dettach_user != NULL) { |