aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-08-24 08:37:54 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-08-24 08:37:54 +0300
commitac05e45177f633523861a17db52ebca33ae9938f (patch)
tree3f8b624bb084e4763bc8188b9ae63f079f4cb2eb
parentbadb7c8fc9b1ebb0ddfbbd7c7c5449b285a7c50d (diff)
downloadlibmicrohttpd-ac05e45177f633523861a17db52ebca33ae9938f.tar.gz
libmicrohttpd-ac05e45177f633523861a17db52ebca33ae9938f.zip
gen_auth: fixed usage of 'assert()'
-rw-r--r--src/microhttpd/gen_auth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/gen_auth.c b/src/microhttpd/gen_auth.c
index 806fe482..02df8c2b 100644
--- 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,
90 else /* combined with the next line */ 90 else /* combined with the next line */
91#endif /* BAUTH_SUPPORT */ 91#endif /* BAUTH_SUPPORT */
92 { 92 {
93 assert (0); 93 mhd_assert (0);
94 return false; 94 return false;
95 } 95 }
96 96