]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
zap an incorrect comment that remained from 1.3 days
authorJeff Trawick <trawick@apache.org>
Wed, 10 Sep 2003 12:13:51 +0000 (12:13 +0000)
committerJeff Trawick <trawick@apache.org>
Wed, 10 Sep 2003 12:13:51 +0000 (12:13 +0000)
Submitted by: Aryeh Katz
Reviewed by: Jeff Trawick

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

server/protocol.c

index 13604371577cb1bfc7e78877a5d9580542c0b995..70aafb0af6e161db81633d32ddc330a6656d3f5b 100644 (file)
@@ -1157,10 +1157,6 @@ AP_DECLARE(int) ap_get_basic_auth_pw(request_rec *r, const char **pw)
     }
 
     t = ap_pbase64decode(r->pool, auth_line);
-    /* Note that this allocation has to be made from r->connection->pool
-     * because it has the lifetime of the connection.  The other allocations
-     * are temporary and can be tossed away any time.
-     */
     r->user = ap_getword_nulls (r->pool, &t, ':');
     r->ap_auth_type = "Basic";