]> granicus.if.org Git - apache/commitdiff
Merge r1638072 from trunk:
authorJim Jagielski <jim@apache.org>
Tue, 2 Dec 2014 12:42:12 +0000 (12:42 +0000)
committerJim Jagielski <jim@apache.org>
Tue, 2 Dec 2014 12:42:12 +0000 (12:42 +0000)
mod_auth_basic: Fix comment mentioning 403 instead of 401.

Submitted by: jkaluza
Reviewed/backported by: jim

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1642850 13f79535-47bb-0310-9956-ffa450edef68

STATUS
modules/aaa/mod_auth_basic.c

diff --git a/STATUS b/STATUS
index d44c5b276c6367644bf6b4804a1a95d73940911c..0914962a4321f7110ecbbeab466944cb1f5d03d9 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -104,11 +104,6 @@ RELEASE SHOWSTOPPERS:
 PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
   [ start all new proposals below, under PATCHES PROPOSED. ]
 
-   * mod_auth_basic: Fix comment mentioning 403 instead of 401. PR 57175.
-     trunk patch: http://svn.apache.org/r1638072
-     2.4.x patch: trunk works
-     +1: jkaluza, covener, ylavic
-
    * core: Check for child_num < 0 also in ap_update_child_status
      and ap_update_child_status_from_conn in scoreboard.c. PR 56767.
      trunk patch: http://svn.apache.org/r1638073
index ee4f1854077e5437751cffd30abfb885e6e21426..5ef40f755ef17e0f4f969a82864cc1d8834101f2 100644 (file)
@@ -428,7 +428,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);
         }