aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/response.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/response.c')
-rw-r--r--src/microhttpd/response.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microhttpd/response.c b/src/microhttpd/response.c
index d9055416..7b1a8074 100644
--- a/src/microhttpd/response.c
+++ b/src/microhttpd/response.c
@@ -912,10 +912,10 @@ MHD_response_execute_upgrade_ (struct MHD_Response *response,
912 urh->app.socket = MHD_INVALID_SOCKET; 912 urh->app.socket = MHD_INVALID_SOCKET;
913 urh->mhd.socket = MHD_INVALID_SOCKET; 913 urh->mhd.socket = MHD_INVALID_SOCKET;
914 /* Non-TLS connection do not hold any additional resources. */ 914 /* Non-TLS connection do not hold any additional resources. */
915 urh->clean_ready = MHD_YES; 915 urh->clean_ready = true;
916 } 916 }
917#else /* ! HTTPS_SUPPORT */ 917#else /* ! HTTPS_SUPPORT */
918 urh->clean_ready = MHD_YES; 918 urh->clean_ready = true;
919#endif /* ! HTTPS_SUPPORT */ 919#endif /* ! HTTPS_SUPPORT */
920 connection->urh = urh; 920 connection->urh = urh;
921 /* As far as MHD's event loops are concerned, this connection is 921 /* As far as MHD's event loops are concerned, this connection is