This commit is contained in:
Christian Grothoff
2014-01-13 15:15:18 +00:00
parent 3d8a80474e
commit 5534659f20
+2 -2
View File
@@ -630,8 +630,8 @@ MHD_digest_auth_check (struct MHD_Connection *connection,
nonce_time = strtoul (nonce + len - 8, (char **)NULL, 16);
t = (uint32_t) MHD_monotonic_time();
/*
* First level vetting for the nonce validity if the timestamp
* attached to the nonce exceeds `nonce_timeout' then the nonce is
* First level vetting for the nonce validity: if the timestamp
* attached to the nonce exceeds `nonce_timeout', then the nonce is
* invalid.
*/
if ( (t > nonce_time + nonce_timeout) ||