libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit d031ea8c3283fe8a3f36a46e67c9859e31dbdce4
parent f2aa7b8853b03cf0e74afb38d1a8a5b7011de9db
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Wed,  4 May 2022 14:41:22 +0300

digestauth: re-used static function

Diffstat:
Msrc/microhttpd/digestauth.c | 5+----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/src/microhttpd/digestauth.c b/src/microhttpd/digestauth.c @@ -1213,10 +1213,7 @@ digest_auth_check_all (struct MHD_Connection *connection, header value. */ return MHD_NO; } - if (TIMESTAMP_CHARS_LEN != - MHD_strx_to_uint64_n_ (nonce + len - TIMESTAMP_CHARS_LEN, - TIMESTAMP_CHARS_LEN, - &nonce_time)) + if (! get_nonce_timestamp (nonce, nonce_len, &nonce_time)) { #ifdef HAVE_MESSAGES MHD_DLOG (daemon,