Commit cd604a98 authored by Cliff Woolley's avatar Cliff Woolley
Browse files

Fix constness compiler warning


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91812 13f79535-47bb-0310-9956-ffa450edef68
parent b2bdfafa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;