diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-03-26 22:50:40 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-03-26 22:50:40 +0000 |
commit | 3d4b7bed73bbae49e51c695222d8b6c4f1e8e4bb (patch) | |
tree | a20a753f01491e0c0098091189933d290f01e71f | |
parent | 26773c9c57a543edda6d271cabea07c5a6b90a9b (diff) |
CHANNEL_EFD_OUTPUT_ACTIVE is false for CHAN_CLOSE_RCVD, too
-rw-r--r-- | usr.bin/ssh/channels.h | 4 |
1 files 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 <ylo@cs.hut.fi> @@ -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 */ |