diff options
Diffstat (limited to 'channels.c')
-rw-r--r-- | channels.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/channels.c b/channels.c index 3eccb849e..719dbff53 100644 --- a/channels.c +++ b/channels.c | |||
@@ -40,7 +40,7 @@ | |||
40 | */ | 40 | */ |
41 | 41 | ||
42 | #include "includes.h" | 42 | #include "includes.h" |
43 | RCSID("$OpenBSD: channels.c,v 1.118 2001/05/28 23:14:49 markus Exp $"); | 43 | RCSID("$OpenBSD: channels.c,v 1.119 2001/05/28 23:25:24 markus Exp $"); |
44 | 44 | ||
45 | #include <openssl/rsa.h> | 45 | #include <openssl/rsa.h> |
46 | #include <openssl/dsa.h> | 46 | #include <openssl/dsa.h> |
@@ -312,12 +312,11 @@ channel_free(Channel *c) | |||
312 | for (n = 0, i = 0; i < channels_alloc; i++) | 312 | for (n = 0, i = 0; i < channels_alloc; i++) |
313 | if (channels[i]) | 313 | if (channels[i]) |
314 | n++; | 314 | n++; |
315 | 315 | debug("channel_free: channel %d: %s, nchannels %d", c->self, | |
316 | debug("channel_free: channel %d: (%s) nchannels: %d", c->self, | ||
317 | c->remote_name ? c->remote_name : "???", n); | 316 | c->remote_name ? c->remote_name : "???", n); |
318 | 317 | ||
319 | s = channel_open_message(); | 318 | s = channel_open_message(); |
320 | debug3("channel_free: status: %s", c->self, s); | 319 | debug3("channel_free: status: %s", s); |
321 | xfree(s); | 320 | xfree(s); |
322 | 321 | ||
323 | if (c->dettach_user != NULL) { | 322 | if (c->dettach_user != NULL) { |