diff options
author | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2022-08-16 15:16:54 +0300 |
---|---|---|
committer | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2022-08-16 15:16:54 +0300 |
commit | 774219b75a15128e00efe6420ec37c52c8ec99c2 (patch) | |
tree | b452a38b7bc8e1a322e6167b1a5aad549e78ac0e | |
parent | 83f50ffcea81a01ee4b06391a884df277d31c76d (diff) | |
download | libmicrohttpd-774219b75a15128e00efe6420ec37c52c8ec99c2.tar.gz libmicrohttpd-774219b75a15128e00efe6420ec37c52c8ec99c2.zip |
digestauth: fixed panic log message
-rw-r--r-- | src/microhttpd/digestauth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/digestauth.c b/src/microhttpd/digestauth.c index 0f428d86..ea236ce7 100644 --- a/src/microhttpd/digestauth.c +++ b/src/microhttpd/digestauth.c | |||
@@ -2748,7 +2748,7 @@ MHD_digest_auth_check_digest3 (struct MHD_Connection *connection, | |||
2748 | 2748 | ||
2749 | if (digest_get_hash_size ((enum MHD_DigestAuthAlgo3) malgo3) != | 2749 | if (digest_get_hash_size ((enum MHD_DigestAuthAlgo3) malgo3) != |
2750 | userdigest_size) | 2750 | userdigest_size) |
2751 | MHD_PANIC (_ ("Wrong 'userdigest_size' value, not matching 'malgo3, " | 2751 | MHD_PANIC (_ ("Wrong 'userdigest_size' value, does not match 'malgo3', " |
2752 | "API violation")); | 2752 | "API violation")); |
2753 | 2753 | ||
2754 | return digest_auth_check_all (connection, | 2754 | return digest_auth_check_all (connection, |