summaryrefslogtreecommitdiff
path: root/channels.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-06-05 20:56:47 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-06-05 20:56:47 +0000
commit4c247550aec813ec389415c8d9f41ed1a9c0339a (patch)
tree7fb245957853aeb90c1c95988528fd9cbc58371b /channels.c
parentc0dee1a1485aae5d4b62ee7742cea5f752392361 (diff)
- markus@cvs.openbsd.org 2001/05/28 23:25:24
[channels.c] cleanup, typo
Diffstat (limited to 'channels.c')
-rw-r--r--channels.c7
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"
43RCSID("$OpenBSD: channels.c,v 1.118 2001/05/28 23:14:49 markus Exp $"); 43RCSID("$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) {