gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libmicrohttpd] 01/03: digestauth: fixed bits manipulations


From: gnunet
Subject: [libmicrohttpd] 01/03: digestauth: fixed bits manipulations
Date: Thu, 25 Jul 2024 15:26:30 +0200

This is an automated email from the git hooks/post-receive script.

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

commit a00142f00480a34990298cb6d8ef299ccb19d8cd
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Thu Jul 25 15:19:54 2024 +0200

    digestauth: fixed bits manipulations
    
    No functional change as the rest of the code does not support sessions.
    Reported by Martin Strunz (maddin200)
---
 src/microhttpd/digestauth.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/microhttpd/digestauth.c b/src/microhttpd/digestauth.c
index 05ca63f2..e2e326f0 100644
--- a/src/microhttpd/digestauth.c
+++ b/src/microhttpd/digestauth.c
@@ -215,7 +215,7 @@ get_base_digest_algo (enum MHD_DigestAuthAlgo3 algo3)
     ((unsigned int) algo3)
     & ~((unsigned int)
         (MHD_DIGEST_AUTH_ALGO3_NON_SESSION
-         | MHD_DIGEST_AUTH_ALGO3_NON_SESSION));
+         | MHD_DIGEST_AUTH_ALGO3_SESSION));
   return (enum MHD_DigestBaseAlgo) base_algo;
 }
 

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]