summaryrefslogtreecommitdiff
path: root/serverloop.c
diff options
context:
space:
mode:
Diffstat (limited to 'serverloop.c')
-rw-r--r--serverloop.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/serverloop.c b/serverloop.c
index 552c69c29..2aec2cf19 100644
--- a/serverloop.c
+++ b/serverloop.c
@@ -269,8 +269,9 @@ retry_select:
269 if (channel_max_fd() > max_fd) 269 if (channel_max_fd() > max_fd)
270 max_fd = channel_max_fd(); 270 max_fd = channel_max_fd();
271 271
272 /* If child has terminated, read as much as is available and then exit. */ 272 /* If child has terminated and there is enough buffer space to read from
273 if (child_terminated) 273 it, then read as much as is available and exit. */
274 if (child_terminated && packet_not_very_much_data_to_write())
274 if (max_time_milliseconds == 0) 275 if (max_time_milliseconds == 0)
275 max_time_milliseconds = 100; 276 max_time_milliseconds = 100;
276 277