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.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index cede2f53..cd2ca189 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -5531,9 +5531,15 @@ MHD_start_daemon_va (unsigned int flags,
5531 free (daemon); 5531 free (daemon);
5532 return NULL; 5532 return NULL;
5533 } 5533 }
5534
5535 if ( (NULL != daemon->notify_completed) &&
5536 (0 != (daemon->options & MHD_USE_THREAD_PER_CONNECTION)) )
5537 *pflags |= MHD_USE_ITC; /* requires ITC */
5538
5534#ifndef NDEBUG 5539#ifndef NDEBUG
5535#ifdef HAVE_MESSAGES 5540#ifdef HAVE_MESSAGES
5536 MHD_DLOG (daemon, _("Using debug build of libmicrohttpd.\n") ); 5541 MHD_DLOG (daemon,
5542 _("Using debug build of libmicrohttpd.\n") );
5537#endif /* HAVE_MESSAGES */ 5543#endif /* HAVE_MESSAGES */
5538#endif /* ! NDEBUG */ 5544#endif /* ! NDEBUG */
5539 5545