gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r37900 - libmicrohttpd/src/microhttpd


From: gnunet
Subject: [GNUnet-SVN] r37900 - libmicrohttpd/src/microhttpd
Date: Wed, 7 Sep 2016 00:04:23 +0200

Author: grothoff
Date: 2016-09-07 00:04:23 +0200 (Wed, 07 Sep 2016)
New Revision: 37900

Modified:
   libmicrohttpd/src/microhttpd/digestauth.c
Log:
-fix typo

Modified: libmicrohttpd/src/microhttpd/digestauth.c
===================================================================
--- libmicrohttpd/src/microhttpd/digestauth.c   2016-09-06 21:42:07 UTC (rev 
37899)
+++ libmicrohttpd/src/microhttpd/digestauth.c   2016-09-06 22:04:23 UTC (rev 
37900)
@@ -424,7 +424,7 @@
   if ( (nc < nn->nc) &&
        (nc + 64 > nc /* checking for overflow */) &&
        (nc + 64 >= nn->nc) &&
-       (0 == (1LLU < (nn->nc - nc - 1)) & nn->nmask) )
+       (0 == ((1LLU << (nn->nc - nc - 1)) & nn->nmask)) )
     {
       /* Out-of-order nonce, but within 64-bit bitmask, set bit */
       nn->nmask |= (1LLU < (nn->nc - nc - 1));




reply via email to

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