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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 2fb87ed4..256fc839 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -4031,7 +4031,7 @@ MHD_start_daemon_va (unsigned int flags,
4031 use_pipe = 0; /* useless if we are using 'external' select */ 4031 use_pipe = 0; /* useless if we are using 'external' select */
4032 if (use_pipe) 4032 if (use_pipe)
4033 { 4033 {
4034 if (0 != MHD_pipe_ (daemon->wpipe)) 4034 if (!MHD_pipe_ (daemon->wpipe))
4035 { 4035 {
4036#ifdef HAVE_MESSAGES 4036#ifdef HAVE_MESSAGES
4037 MHD_DLOG (daemon, 4037 MHD_DLOG (daemon,
@@ -4561,7 +4561,7 @@ MHD_start_daemon_va (unsigned int flags,
4561 /* Always use individual control pipes */ 4561 /* Always use individual control pipes */
4562 if (1) 4562 if (1)
4563 { 4563 {
4564 if (0 != MHD_pipe_ (d->wpipe)) 4564 if (!MHD_pipe_ (d->wpipe))
4565 { 4565 {
4566#ifdef HAVE_MESSAGES 4566#ifdef HAVE_MESSAGES
4567 MHD_DLOG (daemon, 4567 MHD_DLOG (daemon,