aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/daemon.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/daemon.c')
-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 a09df69f..89dd535f 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -6308,7 +6308,7 @@ parse_options_va (struct MHD_Daemon *daemon,
6308 uv = UINT64_MAX / 4000 - 1; 6308 uv = UINT64_MAX / 4000 - 1;
6309 } 6309 }
6310#endif /* (SIZEOF_UINT64_T - 2) <= SIZEOF_UNSIGNED_INT */ 6310#endif /* (SIZEOF_UINT64_T - 2) <= SIZEOF_UNSIGNED_INT */
6311 daemon->connection_timeout_ms = uv * 1000; 6311 daemon->connection_timeout_ms = ((uint64_t) uv) * 1000;
6312 break; 6312 break;
6313 case MHD_OPTION_NOTIFY_COMPLETED: 6313 case MHD_OPTION_NOTIFY_COMPLETED:
6314 daemon->notify_completed = va_arg (ap, 6314 daemon->notify_completed = va_arg (ap,