diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-05-28 23:25:25 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-05-28 23:25:25 +0000 |
commit | 05ac4448c6bb81c84fffa338d9422551ec99c8ac (patch) | |
tree | ed2ef8e0001e93b770ffc504924d16442767af8d | |
parent | f2451d388e83eb432c887e6d2451760c62f2aa80 (diff) |
cleanup, typo
-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) { |