From: Jeff Trawick Date: Mon, 6 Jan 2003 16:02:08 +0000 (+0000) Subject: fix a type mismatch (char * vs. const char *) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4f3d071639a512b39103e419e715929da0816be6;p=apache fix a type mismatch (char * vs. const char *) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98183 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/aaa/mod_authn_default.c b/modules/aaa/mod_authn_default.c index 8dbed1d3a4..0a23f039fb 100644 --- a/modules/aaa/mod_authn_default.c +++ b/modules/aaa/mod_authn_default.c @@ -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) {