From 137136648c6faec2da13f71ca698601aee0a62d3 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Tue, 18 Aug 2015 13:51:39 +1000 Subject: [PATCH] Allow timeout to reach zero in read_socket_line for one non-blocking read --- src/ckpool.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ckpool.c b/src/ckpool.c index 450cf356..6fbffb98 100644 --- a/src/ckpool.c +++ b/src/ckpool.c @@ -521,7 +521,7 @@ int read_socket_line(connsock_t *cs, float *timeout) tv_time(&start); rewait: - if (*timeout <= 0) { + if (*timeout < 0) { LOGDEBUG("Timed out in read_socket_line"); ret = 0; goto out; @@ -550,7 +550,7 @@ rewait: if (eom) break; /* Have we used up all the timeout yet? */ - if (*timeout > 0 && (errno == EAGAIN || errno == EWOULDBLOCK || !ret)) + if (*timeout >= 0 && (errno == EAGAIN || errno == EWOULDBLOCK || !ret)) goto rewait; LOGERR("Failed to recv in read_socket_line"); goto out;