From: Cliff Woolley Date: Thu, 8 Nov 2001 23:26:36 +0000 (+0000) Subject: Fix constness compiler warning X-Git-Tag: 2.0.29~214 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8038dc65d3530569514ff7799c8315a1b9d63f77;p=apache Fix constness compiler warning git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91812 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/metadata/mod_headers.c b/modules/metadata/mod_headers.c index 2c3c727f53..2d356780bd 100644 --- a/modules/metadata/mod_headers.c +++ b/modules/metadata/mod_headers.c @@ -190,7 +190,7 @@ static const char *header_request_time(request_rec *r, char *a) } static const char *header_request_env_var(request_rec *r, char *a) { - char *s = apr_table_get(r->subprocess_env,a); + const char *s = apr_table_get(r->subprocess_env,a); if (s) return s;