aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-04-17 18:02:55 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-04-17 18:02:55 +0300
commit898453fea4434e00089339969a4bfc7e0c13b4de (patch)
tree9d303b6d0a9f45f9567a1c3ed8a8bf7573f8b863
parent17e01403c603fef2c2d5bd1ff6195be6416fa219 (diff)
downloadlibmicrohttpd-898453fea4434e00089339969a4bfc7e0c13b4de.tar.gz
libmicrohttpd-898453fea4434e00089339969a4bfc7e0c13b4de.zip
mhd_send: fixed copy-paster error in 99f2df6dea40624ff82b00ebe362e587f722985f
One more copy-paste error
-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 */