From c19dce2c7abb700a6385b89f509ab65ea70c9836 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20Kalu=C5=BEa?= Date: Tue, 11 Nov 2014 12:00:17 +0000 Subject: [PATCH] mod_auth_basic: Fix comment mentioning 403 instead of 401. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1638072 13f79535-47bb-0310-9956-ffa450edef68 --- modules/aaa/mod_auth_basic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/aaa/mod_auth_basic.c b/modules/aaa/mod_auth_basic.c index 325bfbe07b8..a1ef9b267c3 100644 --- a/modules/aaa/mod_auth_basic.c +++ b/modules/aaa/mod_auth_basic.c @@ -431,7 +431,7 @@ static int authenticate_basic_user(request_rec *r) break; } - /* If we're returning 403, tell them to try again. */ + /* If we're returning 401, tell them to try again. */ if (return_code == HTTP_UNAUTHORIZED) { note_basic_auth_failure(r); } -- 2.47.3