aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 d017313a..87951736 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -2590,7 +2590,7 @@ MHD_connection_handle_idle (struct MHD_Connection *connection)
2590 end = 2590 end =
2591 MHD_get_response_header (connection->response, 2591 MHD_get_response_header (connection->response,
2592 MHD_HTTP_HEADER_CONNECTION); 2592 MHD_HTTP_HEADER_CONNECTION);
2593 client_close = ((NULL != end) && (0 == strcasecmp (end, "close"))); 2593 client_close = ((NULL != end) && (MHD_str_equal_caseless_(end, "close")));
2594 MHD_destroy_response (connection->response); 2594 MHD_destroy_response (connection->response);
2595 connection->response = NULL; 2595 connection->response = NULL;
2596 if ( (NULL != daemon->notify_completed) && 2596 if ( (NULL != daemon->notify_completed) &&