diff options
author | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2021-10-17 13:06:22 +0300 |
---|---|---|
committer | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2021-10-17 13:06:22 +0300 |
commit | d7786168efa7b2484a01bb30b6eec6339f6058cd (patch) | |
tree | 9b9733d270ae632f93ff02a4fcd05bd63b176e5c | |
parent | ec89305a37db6a39010b8311b8e7a8608621362d (diff) |
Removed double close of connection with error
-rw-r--r-- | src/microhttpd/connection.c | 3 |
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) |