summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-10-17 13:06:22 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-10-17 13:06:22 +0300
commitd7786168efa7b2484a01bb30b6eec6339f6058cd (patch)
tree9b9733d270ae632f93ff02a4fcd05bd63b176e5c
parentec89305a37db6a39010b8311b8e7a8608621362d (diff)
Removed double close of connection with error
-rw-r--r--src/microhttpd/connection.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index 654e4192..da3fc1df 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -3300,9 +3300,6 @@ process_header_line (struct MHD_Connection *connection,
if (NULL == colon)
{
/* error in header line, die hard */
- CONNECTION_CLOSE_ERROR (connection,
- _ (
- "Received malformed line (no colon). Closing connection."));
return MHD_NO;
}
if (-1 >= connection->daemon->strict_for_client)