aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-02-28 21:39:39 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-02-28 21:39:39 +0300
commit1c71436380a355afe19d63e79a87b3219d4a455d (patch)
tree2605e0338948dd9475de04ce488016f76b054154
parent80939fd617e69ce4ad22d3d2323439cdac5f6070 (diff)
downloadlibmicrohttpd-1c71436380a355afe19d63e79a87b3219d4a455d.tar.gz
libmicrohttpd-1c71436380a355afe19d63e79a87b3219d4a455d.zip
Fixed regression introduced by a5b2b99e4bbbcdc226fd9992382f4ccae44dfa50
-rw-r--r--src/microhttpd/daemon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 32112d16..4fd1b8c6 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -3007,7 +3007,7 @@ MHD_get_timeout (struct MHD_Daemon *daemon,
3007 have_timeout = true; 3007 have_timeout = true;
3008 } 3008 }
3009 3009
3010 if (have_timeout) 3010 if (! have_timeout)
3011 return MHD_NO; 3011 return MHD_NO;
3012 now = MHD_monotonic_sec_counter(); 3012 now = MHD_monotonic_sec_counter();
3013 if (earliest_deadline < now) 3013 if (earliest_deadline < now)