From b55fa1f58629a78fa00983ad3bedbcf126e16346 Mon Sep 17 00:00:00 2001 From: Rob Swindell <rob@synchro.net> Date: Thu, 20 Oct 2022 10:53:19 -0700 Subject: [PATCH] Don't mention user.dat in comment --- src/sbbs3/websrvr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sbbs3/websrvr.c b/src/sbbs3/websrvr.c index d0bab44b80..42d6afbfba 100644 --- a/src/sbbs3/websrvr.c +++ b/src/sbbs3/websrvr.c @@ -1793,7 +1793,7 @@ static BOOL digest_authentication(http_session_t* session, int auth_allowed, use MD5_close(&ctx, digest); MD5_hex(ha2, digest); - /* Check password as in user.dat */ + /* Check password as in user base */ calculate_digest(session, ha1, ha2, digest); if(thisuser.pass[0]) { // Zero-length password is "special" (any password will work) if(memcmp(digest, session->req.auth.digest, sizeof(digest))) { -- GitLab