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 a5051c01..0764f286 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -3136,7 +3136,7 @@ MHD_accept_connection (struct MHD_Daemon *daemon)
3136 s = accept4 (fd, 3136 s = accept4 (fd,
3137 addr, 3137 addr,
3138 &addrlen, 3138 &addrlen,
3139 MAYBE_SOCK_CLOEXEC | MAYBE_SOCK_NONBLOCK); 3139 MAYBE_SOCK_CLOEXEC | MAYBE_SOCK_NONBLOCK | MAYBE_SOCK_NOSIGPIPE);
3140 sk_nonbl = (MAYBE_SOCK_NONBLOCK != 0); 3140 sk_nonbl = (MAYBE_SOCK_NONBLOCK != 0);
3141#else /* ! USE_ACCEPT4 */ 3141#else /* ! USE_ACCEPT4 */
3142 s = accept (fd, 3142 s = accept (fd,