aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-08-14 16:03:28 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-08-15 16:21:44 +0300
commit0b9d022e8e20bdee6a8abba011763a823d7a4e97 (patch)
tree772b9aa274559c9bfb4dc19a2505b38268408075
parent0d85695349b526afc897f770902e65672f3628e7 (diff)
downloadlibmicrohttpd-0b9d022e8e20bdee6a8abba011763a823d7a4e97.tar.gz
libmicrohttpd-0b9d022e8e20bdee6a8abba011763a823d7a4e97.zip
digestauth: corrected log message for RFC2069 mode
-rw-r--r--src/microhttpd/digestauth.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/microhttpd/digestauth.c b/src/microhttpd/digestauth.c
index 3dd29d20..f01dfc0a 100644
--- a/src/microhttpd/digestauth.c
+++ b/src/microhttpd/digestauth.c
@@ -2301,9 +2301,9 @@ digest_auth_check_all_inner (struct MHD_Connection *connection,
2301 "probably increase the size of the nonce array.\n")); 2301 "probably increase the size of the nonce array.\n"));
2302 else 2302 else
2303 MHD_DLOG (daemon, 2303 MHD_DLOG (daemon,
2304 _ ("Stale nonce received. If this happens a lot, you should " 2304 _ ("Stale nonce received. This is expected when client " \
2305 "probably increase the size of the nonce array or not" 2305 "uses RFC2069-compatible mode and makes more than one " \
2306 "use RFC2069-compatible mode .\n")); 2306 "request.\n"));
2307#endif 2307#endif
2308 return MHD_DAUTH_NONCE_STALE; 2308 return MHD_DAUTH_NONCE_STALE;
2309 } 2309 }