summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>1999-11-16 23:04:19 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>1999-11-16 23:04:19 +0000
commit7ee66d924a43f73073b27be426c4f2f11633ff07 (patch)
tree6731ada58428f60b9c8071d62742caf9fce189f6
parent8a2f476a82542bcc3d40177a7f259afe316a863c (diff)
bugfix: check for space if child has terminated, from: iedowse@maths.tcd.ie
-rw-r--r--usr.bin/ssh/serverloop.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ssh/serverloop.c b/usr.bin/ssh/serverloop.c
index 552c69c2952..2aec2cf194e 100644
--- a/usr.bin/ssh/serverloop.c
+++ b/usr.bin/ssh/serverloop.c
@@ -269,8 +269,9 @@ retry_select:
if (channel_max_fd() > max_fd)
max_fd = channel_max_fd();
- /* If child has terminated, read as much as is available and then exit. */
- if (child_terminated)
+ /* If child has terminated and there is enough buffer space to read from
+ it, then read as much as is available and exit. */
+ if (child_terminated && packet_not_very_much_data_to_write())
if (max_time_milliseconds == 0)
max_time_milliseconds = 100;