summaryrefslogtreecommitdiff
path: root/nchan.c
diff options
context:
space:
mode:
Diffstat (limited to 'nchan.c')
-rw-r--r--nchan.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/nchan.c b/nchan.c
index 3795d8ad4..f2dace0e4 100644
--- a/nchan.c
+++ b/nchan.c
@@ -28,7 +28,7 @@
28 */ 28 */
29 29
30#include "includes.h" 30#include "includes.h"
31RCSID("$Id: nchan.c,v 1.7 2000/04/04 04:39:02 damien Exp $"); 31RCSID("$Id: nchan.c,v 1.8 2000/04/16 01:18:43 damien Exp $");
32 32
33#include "ssh.h" 33#include "ssh.h"
34 34
@@ -389,11 +389,11 @@ chan_delete_if_full_closed2(Channel *c)
389 if (!(c->flags & CHAN_CLOSE_SENT)) { 389 if (!(c->flags & CHAN_CLOSE_SENT)) {
390 chan_send_close2(c); 390 chan_send_close2(c);
391 } 391 }
392 if ((c->flags & CHAN_CLOSE_SENT) && 392 if ((c->flags & CHAN_CLOSE_SENT) &&
393 (c->flags & CHAN_CLOSE_RCVD)) { 393 (c->flags & CHAN_CLOSE_RCVD)) {
394 debug("channel %d: full closed2", c->self); 394 debug("channel %d: full closed2", c->self);
395 channel_free(c->self); 395 channel_free(c->self);
396 } 396 }
397 } 397 }
398} 398}
399 399