From 927c269733ce83f670603c106fa1abc0771f5cec Mon Sep 17 00:00:00 2001 From: "Evgeny Grin (Karlson2k)" Date: Sun, 28 Apr 2024 21:04:33 +0200 Subject: [PATCH] Fixed deprecation message when building the lib --- src/microhttpd/daemon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c index 19e77e78..94ecb1b7 100644 --- a/src/microhttpd/daemon.c +++ b/src/microhttpd/daemon.c @@ -9718,7 +9718,7 @@ MHD_is_feature_supported (enum MHD_FEATURE feature) #else return MHD_NO; #endif - case MHD_FEATURE_HTTPS_COOKIE_PARSING: + case MHD_FEATURE_COOKIE_PARSING: #if defined(COOKIE_SUPPORT) return MHD_YES; #else