]> granicus.if.org Git - apache/commitdiff
Both the r->user and r->ap_auth_type were set previously when the username and passwo...
authorBradley Nicholes <bnicholes@apache.org>
Wed, 18 Aug 2004 16:28:57 +0000 (16:28 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Wed, 18 Aug 2004 16:28:57 +0000 (16:28 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104712 13f79535-47bb-0310-9956-ffa450edef68

modules/aaa/mod_auth_basic.c

index 346f71116baa32aae2d6a7e8c7368d952134ba8c..a6abd73fa7d853637631afe95ec1e082ed4ceea7 100644 (file)
@@ -288,12 +288,6 @@ static int authenticate_basic_user(request_rec *r)
         return return_code;
     }
 
-    /* Now that we are done, set the request_rec values so others will know
-     * who we are.
-     */
-    r->user = (char*)sent_user;
-    r->ap_auth_type = "Basic";
-
     return OK;
 }