commit a5b2b99e4bbbcdc226fd9992382f4ccae44dfa50
parent abc6bac2fbc1bd5927e1d2827eca2c15365c16b8
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Tue, 28 Feb 2017 19:27:48 +0300
MHD_get_timeout(): one more 'int' -> 'bool' replacement.
Diffstat:
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
@@ -2955,7 +2955,7 @@ MHD_get_timeout (struct MHD_Daemon *daemon,
time_t earliest_deadline;
time_t now;
struct MHD_Connection *pos;
- int have_timeout;
+ bool have_timeout;
if (0 != (daemon->options & MHD_USE_THREAD_PER_CONNECTION))
{
@@ -2983,7 +2983,7 @@ MHD_get_timeout (struct MHD_Daemon *daemon,
}
#endif /* EPOLL_SUPPORT */
- have_timeout = MHD_NO;
+ have_timeout = false;;
earliest_deadline = 0; /* avoid compiler warnings */
for (pos = daemon->manual_timeout_head; NULL != pos; pos = pos->nextX)
{
@@ -2992,7 +2992,7 @@ MHD_get_timeout (struct MHD_Daemon *daemon,
if ( (! have_timeout) ||
(earliest_deadline > pos->last_activity + pos->connection_timeout) )
earliest_deadline = pos->last_activity + pos->connection_timeout;
- have_timeout = MHD_YES;
+ have_timeout = true;
}
}
/* normal timeouts are sorted, so we only need to look at the 'tail' (oldest) */
@@ -3003,10 +3003,10 @@ MHD_get_timeout (struct MHD_Daemon *daemon,
if ( (! have_timeout) ||
(earliest_deadline > pos->last_activity + pos->connection_timeout) )
earliest_deadline = pos->last_activity + pos->connection_timeout;
- have_timeout = MHD_YES;
+ have_timeout = true;
}
- if (MHD_NO == have_timeout)
+ if (have_timeout)
return MHD_NO;
now = MHD_monotonic_sec_counter();
if (earliest_deadline < now)