commit eee0b9ad40d13311b989cfc9995df53fba960d94
parent a6ea76afd51d36d968f41f9f4a35b558626d377f
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Sun, 8 Jan 2017 23:46:20 +0300
Fixed regression introduced by f3b0eb539e8a0e87745dc53eabe507b98f1864b6
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
@@ -3111,7 +3111,7 @@ MHD_connection_handle_idle (struct MHD_Connection *connection)
/* no default action */
break;
case MHD_CONNECTION_FOOTERS_SENT:
- if (MHD_HTTP_PROCESSING == connection->response->status_code)
+ if (MHD_HTTP_PROCESSING == connection->responseCode)
{
/* After this type of response, we allow sending another! */
connection->state = MHD_CONNECTION_HEADERS_PROCESSED;