aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2024-02-21 19:49:57 +0500
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2024-02-21 19:49:57 +0500
commit71c543f4097d7d559e8d7bd6b87f0cedc4f11154 (patch)
tree31d86a992c1adb1aaf480df7e985e18aeb9bb810
parent07fa8f05f3c297c97828e1c2494c161d3ea376b0 (diff)
downloadlibmicrohttpd-71c543f4097d7d559e8d7bd6b87f0cedc4f11154.tar.gz
digestauth: fixed compiler warnings
-rw-r--r--src/microhttpd/digestauth.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/microhttpd/digestauth.c b/src/microhttpd/digestauth.c
index 277f98b1..05ca63f2 100644
--- a/src/microhttpd/digestauth.c
+++ b/src/microhttpd/digestauth.c
@@ -3545,9 +3545,10 @@ queue_auth_required_response3_inner (struct MHD_Connection *connection,
#endif /* HAVE_MESSAGES */
return MHD_NO;
}
- malgo3 &=
- (enum MHD_DigestAuthMultiQOP)
- (~((enum MHD_DigestAuthMultiQOP) MHD_DIGEST_AUTH_ALGO3_NON_SESSION));
+ malgo3 =
+ (enum MHD_DigestAuthMultiAlgo3)
+ (malgo3
+ & (~((enum MHD_DigestAuthMultiAlgo3) MHD_DIGEST_AUTH_ALGO3_NON_SESSION)));
#ifdef MHD_MD5_SUPPORT
if (0 != (((unsigned int) malgo3) & MHD_DIGEST_BASE_ALGO_MD5))
s_algo = MHD_DIGEST_AUTH_ALGO3_MD5;
@@ -3580,8 +3581,10 @@ queue_auth_required_response3_inner (struct MHD_Connection *connection,
if (MHD_DIGEST_AUTH_MULT_QOP_AUTH_INT == mqop)
MHD_PANIC (_ ("Wrong 'mqop' value, API violation"));
- mqop &= (enum MHD_DigestAuthMultiQOP)
- (~((enum MHD_DigestAuthMultiQOP) MHD_DIGEST_AUTH_QOP_AUTH_INT));
+
+ mqop = (enum MHD_DigestAuthMultiQOP)
+ (mqop
+ & (~((enum MHD_DigestAuthMultiQOP) MHD_DIGEST_AUTH_QOP_AUTH_INT)));
if (! digest_init_one_time (da, get_base_digest_algo (s_algo)))
MHD_PANIC (_ ("Wrong 'algo' value, API violation"));