aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-12-08 13:49:07 +0000
committerChristian Grothoff <christian@grothoff.org>2014-12-08 13:49:07 +0000
commitdef7c593ead5a6be8129f22b4a554badd2be3124 (patch)
tree061ff2943ef508a29b3186d693a5f1cf182a9493
parent6ee22efc8bef57932da02c5d97204cf42395caee (diff)
downloadlibmicrohttpd-def7c593ead5a6be8129f22b4a554badd2be3124.tar.gz
libmicrohttpd-def7c593ead5a6be8129f22b4a554badd2be3124.zip
-clarify comment
-rw-r--r--src/microhttpd/connection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index 72141443..40ca942a 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -686,7 +686,7 @@ build_header_response (struct MHD_Connection *connection)
686 reason_phrase); 686 reason_phrase);
687 off = strlen (code); 687 off = strlen (code);
688 /* estimate size */ 688 /* estimate size */
689 size = off + 2; /* extra \r\n at the end */ 689 size = off + 2; /* +2 for extra "\r\n" at the end */
690 kind = MHD_HEADER_KIND; 690 kind = MHD_HEADER_KIND;
691 if ( (0 == (connection->daemon->options & MHD_SUPPRESS_DATE_NO_CLOCK)) && 691 if ( (0 == (connection->daemon->options & MHD_SUPPRESS_DATE_NO_CLOCK)) &&
692 (NULL == MHD_get_response_header (connection->response, 692 (NULL == MHD_get_response_header (connection->response,