aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-04-01 20:18:27 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-04-01 21:33:45 +0300
commitfb9100e3e7981e9fe9ec4171b905641f51b6ace3 (patch)
tree39f4dff7b42aac7484268e47444035a8dfa0a82e
parent876be0435307bf0904977c08fc9b8796ec28ae49 (diff)
downloadlibmicrohttpd-fb9100e3e7981e9fe9ec4171b905641f51b6ace3.tar.gz
libmicrohttpd-fb9100e3e7981e9fe9ec4171b905641f51b6ace3.zip
connection.c: mute compiler warning
-rw-r--r--src/microhttpd/connection.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index 25d920e2..db130e18 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -1277,6 +1277,7 @@ build_header_response (struct MHD_Connection *connection)
1277 must_add_chunked_encoding = false; 1277 must_add_chunked_encoding = false;
1278 must_add_keep_alive = false; 1278 must_add_keep_alive = false;
1279 must_add_content_length = false; 1279 must_add_content_length = false;
1280 content_length_len = 0; /* Mute compiler warning only */
1280 response_has_close = false; 1281 response_has_close = false;
1281 switch (connection->state) 1282 switch (connection->state)
1282 { 1283 {