aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/connection.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/connection.c')
-rw-r--r--src/microhttpd/connection.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index ef61fdb6..dd6e2733 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -1036,7 +1036,9 @@ connection_close_error (struct MHD_Connection *connection,
1036 if (NULL != emsg) 1036 if (NULL != emsg)
1037 MHD_DLOG (connection->daemon, 1037 MHD_DLOG (connection->daemon,
1038 emsg); 1038 emsg);
1039#endif 1039#else /* ! HAVE_MESSAGES */
1040 (void)emsg; /* Mute compiler warning. */
1041#endif /* ! HAVE_MESSAGES */
1040 MHD_connection_close_ (connection, 1042 MHD_connection_close_ (connection,
1041 MHD_REQUEST_TERMINATED_WITH_ERROR); 1043 MHD_REQUEST_TERMINATED_WITH_ERROR);
1042} 1044}