aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/connection.c
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-07-22 11:01:38 +0000
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-07-22 11:01:38 +0000
commit8e03bbc69407c99cf9272546707bdba760f28a1d (patch)
tree8c676f3d568c9fb368c69790c139027c19e50664 /src/microhttpd/connection.c
parentdcc7066746037f61e9645b70d6526a44efdba093 (diff)
downloadlibmicrohttpd-8e03bbc69407c99cf9272546707bdba760f28a1d.tar.gz
libmicrohttpd-8e03bbc69407c99cf9272546707bdba760f28a1d.zip
connection.c: fixed build without messages (#endif placement)
Diffstat (limited to 'src/microhttpd/connection.c')
-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 5871df4a..55d7ba09 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -1805,8 +1805,8 @@ process_request_body (struct MHD_Connection *connection)
1805 (MHD_NO == connection->suspended) ) 1805 (MHD_NO == connection->suspended) )
1806 MHD_DLOG (connection->daemon, 1806 MHD_DLOG (connection->daemon,
1807 "WARNING: incomplete POST processing and connection not suspended will result in hung connection.\n"); 1807 "WARNING: incomplete POST processing and connection not suspended will result in hung connection.\n");
1808 }
1809#endif 1808#endif
1809 }
1810 used -= processed; 1810 used -= processed;
1811 if (connection->have_chunked_upload == MHD_YES) 1811 if (connection->have_chunked_upload == MHD_YES)
1812 connection->current_chunk_offset += used; 1812 connection->current_chunk_offset += used;