aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/microhttpd/mhd_send.c2
-rw-r--r--src/microhttpd/test_postprocessor_md.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/microhttpd/mhd_send.c b/src/microhttpd/mhd_send.c
index ffba5b95..1ae623b3 100644
--- a/src/microhttpd/mhd_send.c
+++ b/src/microhttpd/mhd_send.c
@@ -611,7 +611,7 @@ post_send_setopt (struct MHD_Connection *connection,
611 * data by setting TCP_NODELAY (TCP_NODELAY will not be removed 611 * data by setting TCP_NODELAY (TCP_NODELAY will not be removed
612 * and is needed to push the data by send() without MSG_MORE). 612 * and is needed to push the data by send() without MSG_MORE).
613 * If send()/sendmsg() will be used next than push data by 613 * If send()/sendmsg() will be used next than push data by
614 * reseting of TCP_CORK so next send without MSG_MORE will push 614 * resetting of TCP_CORK so next send without MSG_MORE will push
615 * data to the network (without additional sys-call to push data). 615 * data to the network (without additional sys-call to push data).
616 * If next final send function will not support MSG_MORE (like 616 * If next final send function will not support MSG_MORE (like
617 * sendfile() or TLS-connection) than push data by setting 617 * sendfile() or TLS-connection) than push data by setting
diff --git a/src/microhttpd/test_postprocessor_md.c b/src/microhttpd/test_postprocessor_md.c
index 81912f08..014357ae 100644
--- a/src/microhttpd/test_postprocessor_md.c
+++ b/src/microhttpd/test_postprocessor_md.c
@@ -77,7 +77,7 @@ post_data_iterator (void *cls,
77{ 77{
78 (void) cls; (void) kind; (void) filename; /* Mute compiler warnings */ 78 (void) cls; (void) kind; (void) filename; /* Mute compiler warnings */
79 (void) content_type; (void) transfer_encoding; 79 (void) content_type; (void) transfer_encoding;
80 (void) off; /* FIXME: shoudn't be checked? */ 80 (void) off; /* FIXME: shouldn't be checked? */
81#if DEBUG 81#if DEBUG
82 fprintf (stderr, 82 fprintf (stderr,
83 "%s\t%s\n", 83 "%s\t%s\n",
@@ -163,7 +163,7 @@ post_data_iterator3 (void *cls,
163{ 163{
164 (void) cls; (void) kind; (void) filename; /* Mute compiler warnings */ 164 (void) cls; (void) kind; (void) filename; /* Mute compiler warnings */
165 (void) content_type; (void) transfer_encoding; 165 (void) content_type; (void) transfer_encoding;
166 (void) off; /* FIXME: shoudn't be checked? */ 166 (void) off; /* FIXME: shouldn't be checked? */
167#if DEBUG 167#if DEBUG
168 fprintf (stderr, 168 fprintf (stderr,
169 "%s\t%s\n", 169 "%s\t%s\n",
@@ -194,7 +194,7 @@ post_data_iterator4 (void *cls,
194{ 194{
195 (void) cls; (void) kind; (void) key; /* Mute compiler warnings */ 195 (void) cls; (void) kind; (void) key; /* Mute compiler warnings */
196 (void) filename; (void) content_type; (void) transfer_encoding; 196 (void) filename; (void) content_type; (void) transfer_encoding;
197 (void) off; /* FIXME: shoudn't be checked? */ 197 (void) off; /* FIXME: shouldn't be checked? */
198#if DEBUG 198#if DEBUG
199 fprintf (stderr, 199 fprintf (stderr,
200 "%s\t%s\n", 200 "%s\t%s\n",