From 3d4b7bed73bbae49e51c695222d8b6c4f1e8e4bb Mon Sep 17 00:00:00 2001 From: Markus Friedl Date: Tue, 26 Mar 2002 22:50:40 +0000 Subject: CHANNEL_EFD_OUTPUT_ACTIVE is false for CHAN_CLOSE_RCVD, too --- usr.bin/ssh/channels.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/ssh/channels.h b/usr.bin/ssh/channels.h index 0da2d4e5e02..bd31c455825 100644 --- a/usr.bin/ssh/channels.h +++ b/usr.bin/ssh/channels.h @@ -1,4 +1,4 @@ -/* $OpenBSD: channels.h,v 1.66 2002/03/25 21:13:51 markus Exp $ */ +/* $OpenBSD: channels.h,v 1.67 2002/03/26 22:50:39 markus Exp $ */ /* * Author: Tatu Ylonen @@ -145,7 +145,7 @@ struct Channel { buffer_len(&c->extended) > 0)) #define CHANNEL_EFD_OUTPUT_ACTIVE(c) \ (compat20 && c->extended_usage == CHAN_EXTENDED_WRITE && \ - ((c->efd != -1 && !(c->flags & CHAN_EOF_RCVD)) || \ + ((c->efd != -1 && !(c->flags & (CHAN_EOF_RCVD|CHAN_CLOSE_RCVD))) || \ buffer_len(&c->extended) > 0)) /* channel management */ -- cgit v1.2.3