libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 4e5b65706e1c89d6d2845bd1fe9e1a91569e97d8
parent 38c06b6aeb3aa3b4ab4cab6cce9e08c55c2a9b9c
Author: Christian Grothoff <grothoff@gnunet.org>
Date:   Sat,  2 Dec 2023 20:32:42 +0900

fix #7967

Diffstat:
Msrc/microhttpd/connection.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c @@ -3670,7 +3670,9 @@ check_and_grow_read_buffer_space (struct MHD_Connection *c) case MHD_CONNECTION_FOOTERS_SENDING: case MHD_CONNECTION_FULL_REPLY_SENT: case MHD_CONNECTION_CLOSED: +#ifdef UPGRADE_SUPPORT case MHD_CONNECTION_UPGRADE: +#endif default: stage = MHD_PROC_RECV_BODY_NORMAL; mhd_assert (0);