commit 0934cb436b5275931ab92e77ca6f527e3ae62371
parent 96aabc147dca3043fca5822ff0756e4bcfacf404
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Wed, 15 Mar 2017 23:01:08 +0300
MHD_connection_handle_idle(): one more missing reset of 'connection->in_idle'
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
@@ -3201,6 +3201,7 @@ MHD_connection_handle_idle (struct MHD_Connection *connection)
return MHD_NO;
#ifdef UPGRADE_SUPPORT
case MHD_CONNECTION_UPGRADE:
+ connection->in_idle = false;
return MHD_YES; /* keep open */
#endif /* UPGRADE_SUPPORT */
default: