aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-07-12 17:14:30 +0000
committerChristian Grothoff <christian@grothoff.org>2013-07-12 17:14:30 +0000
commit1c553e71a97ebf78f251f70dda761d469c53fba9 (patch)
tree9acf924a9730c8325b3419db2e7a9d5cadbeb572
parent9e2d653d53c200fbf80e131fb5a53efa0f5fec7c (diff)
downloadlibmicrohttpd-1c553e71a97ebf78f251f70dda761d469c53fba9.tar.gz
libmicrohttpd-1c553e71a97ebf78f251f70dda761d469c53fba9.zip
-try instant state forward, 2nd variant
-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 97fbd2d2..8f2c9bca 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -2591,7 +2591,7 @@ MHD_queue_response (struct MHD_Connection *connection,
2591 connection->read_closed = MHD_YES; 2591 connection->read_closed = MHD_YES;
2592 connection->state = MHD_CONNECTION_FOOTERS_RECEIVED; 2592 connection->state = MHD_CONNECTION_FOOTERS_RECEIVED;
2593 } 2593 }
2594 MHD_connection_update_event_loop_info (connection); 2594 (void) MHD_connection_handle_idle (connection);
2595 return MHD_YES; 2595 return MHD_YES;
2596} 2596}
2597 2597