]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
mod_auth_basic: Fix comment mentioning 403 instead of 401.
authorJan Kaluža <jkaluza@apache.org>
Tue, 11 Nov 2014 12:00:17 +0000 (12:00 +0000)
committerJan Kaluža <jkaluza@apache.org>
Tue, 11 Nov 2014 12:00:17 +0000 (12:00 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1638072 13f79535-47bb-0310-9956-ffa450edef68

modules/aaa/mod_auth_basic.c

index 325bfbe07b8b344f7fe12f85cd5245a0829c8504..a1ef9b267c383724846f3978586ec3a5651cc1ef 100644 (file)
@@ -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);
         }