libmicrohttpd

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

commit ac05e45177f633523861a17db52ebca33ae9938f
parent badb7c8fc9b1ebb0ddfbbd7c7c5449b285a7c50d
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Wed, 24 Aug 2022 08:37:54 +0300

gen_auth: fixed usage of 'assert()'

Diffstat:
Msrc/microhttpd/gen_auth.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/microhttpd/gen_auth.c b/src/microhttpd/gen_auth.c @@ -90,7 +90,7 @@ find_auth_rq_header_ (const struct MHD_Connection *c, enum MHD_AuthType type, else /* combined with the next line */ #endif /* BAUTH_SUPPORT */ { - assert (0); + mhd_assert (0); return false; }