diff options
author | Cliff Woolley <jwoolley@apache.org> | 2001-11-09 00:26:36 +0100 |
---|---|---|
committer | Cliff Woolley <jwoolley@apache.org> | 2001-11-09 00:26:36 +0100 |
commit | 8038dc65d3530569514ff7799c8315a1b9d63f77 (patch) | |
tree | 2783a61e0e72138b69f6973d731fb97eb1d5429f /modules/metadata/mod_headers.c | |
parent | Get the daemon code working again for User/Group on BeOS, (diff) | |
download | apache2-8038dc65d3530569514ff7799c8315a1b9d63f77.tar.xz apache2-8038dc65d3530569514ff7799c8315a1b9d63f77.zip |
Fix constness compiler warning
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91812 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/metadata/mod_headers.c')
-rw-r--r-- | modules/metadata/mod_headers.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |