diff options
author | 2001-10-04 15:05:40 +0000 | |
---|---|---|
committer | 2001-10-04 15:05:40 +0000 | |
commit | d5ff93ace6a2f985e2f59ae09e80ba7112a87775 (patch) | |
tree | 2eb4725f373fde17b07bde94510002548bc1ab4e /usr.bin/ssh/serverloop.c | |
parent | call OPENSSL_free() for memory allocated by openssl; from chombier@mac.com (diff) | |
download | wireguard-openbsd-d5ff93ace6a2f985e2f59ae09e80ba7112a87775.tar.xz wireguard-openbsd-d5ff93ace6a2f985e2f59ae09e80ba7112a87775.zip |
comment out bogus conditions for selecting on connection_in
Diffstat (limited to 'usr.bin/ssh/serverloop.c')
-rw-r--r-- | usr.bin/ssh/serverloop.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/ssh/serverloop.c b/usr.bin/ssh/serverloop.c index dbe5d21664a..3be1a4fdc05 100644 --- a/usr.bin/ssh/serverloop.c +++ b/usr.bin/ssh/serverloop.c @@ -35,7 +35,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: serverloop.c,v 1.77 2001/09/17 21:04:02 markus Exp $"); +RCSID("$OpenBSD: serverloop.c,v 1.78 2001/10/04 15:05:40 markus Exp $"); #include "xmalloc.h" #include "packet.h" @@ -196,9 +196,11 @@ retry_select: channel_prepare_select(readsetp, writesetp, maxfdp, nallocp, 0); if (compat20) { +#if 0 /* wrong: bad condition XXX */ if (channel_not_very_much_buffered_data()) - FD_SET(connection_in, *readsetp); +#endif + FD_SET(connection_in, *readsetp); } else { /* * Read packets from the client unless we have too much |