]> granicus.if.org Git - apache/commitdiff
fix a type mismatch (char * vs. const char *)
authorJeff Trawick <trawick@apache.org>
Mon, 6 Jan 2003 16:02:08 +0000 (16:02 +0000)
committerJeff Trawick <trawick@apache.org>
Mon, 6 Jan 2003 16:02:08 +0000 (16:02 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98183 13f79535-47bb-0310-9956-ffa450edef68

modules/aaa/mod_authn_default.c

index 8dbed1d3a41b4f0e9c4f281ef4fe493b99973cb5..0a23f039fb10c53aa2f3e0e0b2f47f25a5327cc8 100644 (file)
@@ -119,7 +119,7 @@ static int authenticate_no_user(request_rec *r)
 
     /* fill in the r->user field */
     if (!strcasecmp(type, "Basic")) {
-        char *sent_pw;
+        const char *sent_pw;
         int res;
 
         if ((res = ap_get_basic_auth_pw(r, &sent_pw)) != OK) {