aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2024-01-30 23:52:54 +0100
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2024-01-30 23:52:54 +0100
commit5587f1e043a26630303801f09fec0396511291eb (patch)
treef991e120a4fac84678a6105bad2ac421ad7b3de0 /src/microhttpd
parentf8e198519e049b4955fb85bd40421b0841a85858 (diff)
downloadlibmicrohttpd-5587f1e043a26630303801f09fec0396511291eb.tar.gz
libmicrohttpd-5587f1e043a26630303801f09fec0396511291eb.zip
Fixed non-debug build without HTTPS
Diffstat (limited to 'src/microhttpd')
-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 ab5e3750..fb9352dc 100644
--- a/src/microhttpd/response.c
+++ b/src/microhttpd/response.c
@@ -1933,9 +1933,9 @@ enum MHD_Result
1933MHD_response_execute_upgrade_ (struct MHD_Response *response, 1933MHD_response_execute_upgrade_ (struct MHD_Response *response,
1934 struct MHD_Connection *connection) 1934 struct MHD_Connection *connection)
1935{ 1935{
1936#if defined(HTTPS_SUPPORT) || defined(_DEBUG) 1936#if defined(HTTPS_SUPPORT) || defined(_DEBUG) || defined(HAVE_MESSAGES)
1937 struct MHD_Daemon *const daemon = connection->daemon; 1937 struct MHD_Daemon *const daemon = connection->daemon;
1938#endif /* HTTPS_SUPPORT || _DEBUG */ 1938#endif /* HTTPS_SUPPORT || _DEBUG || HAVE_MESSAGES */
1939 struct MHD_UpgradeResponseHandle *urh; 1939 struct MHD_UpgradeResponseHandle *urh;
1940 size_t rbo; 1940 size_t rbo;
1941 1941