From: Jeff Trawick Date: Wed, 6 Jun 2001 00:54:06 +0000 (+0000) Subject: ap_getword_conf wants const char **, not char ** X-Git-Tag: 2.0.19~141 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ef9ae8db79c37736911b7d60088b61777d863f9;p=thirdparty%2Fapache%2Fhttpd.git ap_getword_conf wants const char **, not char ** git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89272 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/metadata/mod_headers.c b/modules/metadata/mod_headers.c index 2d8fd19a149..c41b98b33f8 100644 --- a/modules/metadata/mod_headers.c +++ b/modules/metadata/mod_headers.c @@ -419,7 +419,7 @@ static const char *header_inout_cmd(hdr_inout inout, cmd_parms *cmd, void *indir static const char *header_cmd(cmd_parms *cmd, void *indirconf, const char *args) { - char *s; + const char *s; const char *action; const char *hdr; const char *val;