aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-01-08 23:46:20 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-01-08 23:47:28 +0300
commiteee0b9ad40d13311b989cfc9995df53fba960d94 (patch)
tree0aafe7c19b60ab4faf6a6f68dea2c12df493d884 /src
parenta6ea76afd51d36d968f41f9f4a35b558626d377f (diff)
downloadlibmicrohttpd-eee0b9ad40d13311b989cfc9995df53fba960d94.tar.gz
libmicrohttpd-eee0b9ad40d13311b989cfc9995df53fba960d94.zip
Fixed regression introduced by f3b0eb539e8a0e87745dc53eabe507b98f1864b6
Diffstat (limited to 'src')
-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 23fde229..abcf3fa0 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -3111,7 +3111,7 @@ MHD_connection_handle_idle (struct MHD_Connection *connection)
3111 /* no default action */ 3111 /* no default action */
3112 break; 3112 break;
3113 case MHD_CONNECTION_FOOTERS_SENT: 3113 case MHD_CONNECTION_FOOTERS_SENT:
3114 if (MHD_HTTP_PROCESSING == connection->response->status_code) 3114 if (MHD_HTTP_PROCESSING == connection->responseCode)
3115 { 3115 {
3116 /* After this type of response, we allow sending another! */ 3116 /* After this type of response, we allow sending another! */
3117 connection->state = MHD_CONNECTION_HEADERS_PROCESSED; 3117 connection->state = MHD_CONNECTION_HEADERS_PROCESSED;