aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/mhd_send.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/mhd_send.c')
-rw-r--r--src/microhttpd/mhd_send.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microhttpd/mhd_send.c b/src/microhttpd/mhd_send.c
index b347503f..c1696619 100644
--- a/src/microhttpd/mhd_send.c
+++ b/src/microhttpd/mhd_send.c
@@ -275,7 +275,7 @@ MHD_connection_set_cork_state_ (struct MHD_Connection *connection,
275#else /* ! TCP_CORK */ 275#else /* ! TCP_CORK */
276 "TCP_NOPUSH", 276 "TCP_NOPUSH",
277#endif /* ! TCP_CORK */ 277#endif /* ! TCP_CORK */
278 nodelay_state ? _ ("ON") : _ ("OFF"), 278 cork_state ? _ ("ON") : _ ("OFF"),
279 (int) connection->socket_fd, 279 (int) connection->socket_fd,
280 MHD_socket_strerr_ (err_code)); 280 MHD_socket_strerr_ (err_code));
281 } 281 }
@@ -291,7 +291,7 @@ MHD_connection_set_cork_state_ (struct MHD_Connection *connection,
291#else /* ! TCP_CORK */ 291#else /* ! TCP_CORK */
292 "TCP_NOPUSH", 292 "TCP_NOPUSH",
293#endif /* ! TCP_CORK */ 293#endif /* ! TCP_CORK */
294 nodelay_state ? _ ("ON") : _ ("OFF"), 294 cork_state ? _ ("ON") : _ ("OFF"),
295 MHD_socket_strerr_ (err_code)); 295 MHD_socket_strerr_ (err_code));
296 } 296 }
297#endif /* HAVE_MESSAGES */ 297#endif /* HAVE_MESSAGES */