aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/digestauth.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-01-13 15:15:18 +0000
committerChristian Grothoff <christian@grothoff.org>2014-01-13 15:15:18 +0000
commit5534659f202f3ba5fe5b9155fc742e63518aefc9 (patch)
tree1288fdd4814278733972c0ca362f004e8e1b017c /src/microhttpd/digestauth.c
parent3d8a80474e07a854516c08978eb5149d42833a7d (diff)
downloadlibmicrohttpd-5534659f202f3ba5fe5b9155fc742e63518aefc9.tar.gz
libmicrohttpd-5534659f202f3ba5fe5b9155fc742e63518aefc9.zip
-grammar
Diffstat (limited to 'src/microhttpd/digestauth.c')
-rw-r--r--src/microhttpd/digestauth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microhttpd/digestauth.c b/src/microhttpd/digestauth.c
index f67db9e3..87a2570e 100644
--- a/src/microhttpd/digestauth.c
+++ b/src/microhttpd/digestauth.c
@@ -630,8 +630,8 @@ MHD_digest_auth_check (struct MHD_Connection *connection,
630 nonce_time = strtoul (nonce + len - 8, (char **)NULL, 16); 630 nonce_time = strtoul (nonce + len - 8, (char **)NULL, 16);
631 t = (uint32_t) MHD_monotonic_time(); 631 t = (uint32_t) MHD_monotonic_time();
632 /* 632 /*
633 * First level vetting for the nonce validity if the timestamp 633 * First level vetting for the nonce validity: if the timestamp
634 * attached to the nonce exceeds `nonce_timeout' then the nonce is 634 * attached to the nonce exceeds `nonce_timeout', then the nonce is
635 * invalid. 635 * invalid.
636 */ 636 */
637 if ( (t > nonce_time + nonce_timeout) || 637 if ( (t > nonce_time + nonce_timeout) ||