diff options
author | ng0 <ng0@n0.is> | 2019-10-17 15:52:27 +0000 |
---|---|---|
committer | ng0 <ng0@n0.is> | 2019-10-17 15:52:27 +0000 |
commit | f1ab15426f53caf5660c7d0dd29b3f60b101c1b8 (patch) | |
tree | 0d889ba9cff10d4744cb447544a8ec8d38ccf526 | |
parent | 972103dc288e2a2396e060018e7c3733f29a940d (diff) |
fix failure to buildv0.9.67
-rw-r--r-- | src/microhttpd/mhd_sockets.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/microhttpd/mhd_sockets.c b/src/microhttpd/mhd_sockets.c index 38c6ecd4..7929c07a 100644 --- a/src/microhttpd/mhd_sockets.c +++ b/src/microhttpd/mhd_sockets.c @@ -530,10 +530,8 @@ MHD_socket_cork_ (MHD_socket sock, return 0; /* even force flush failed!? */ return 1; /* success */ } -#else - return 0; #endif -#elif +#else /* do not have MHD_TCP_CORK_NOPUSH at all */ return 0; #endif |