commit 0b9d022e8e20bdee6a8abba011763a823d7a4e97 parent 0d85695349b526afc897f770902e65672f3628e7 Author: Evgeny Grin (Karlson2k) <k2k@narod.ru> Date: Sun, 14 Aug 2022 16:03:28 +0300 digestauth: corrected log message for RFC2069 mode Diffstat:
| M | src/microhttpd/digestauth.c | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/microhttpd/digestauth.c b/src/microhttpd/digestauth.c @@ -2301,9 +2301,9 @@ digest_auth_check_all_inner (struct MHD_Connection *connection, "probably increase the size of the nonce array.\n")); else MHD_DLOG (daemon, - _ ("Stale nonce received. If this happens a lot, you should " - "probably increase the size of the nonce array or not" - "use RFC2069-compatible mode .\n")); + _ ("Stale nonce received. This is expected when client " \ + "uses RFC2069-compatible mode and makes more than one " \ + "request.\n")); #endif return MHD_DAUTH_NONCE_STALE; }