From: William A. Rowe Jr Date: Fri, 10 Mar 2006 08:58:56 +0000 (+0000) Subject: Unsure why win32 never noticed this, but the value returned is a const char* X-Git-Tag: 2.3.0~2509 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b45e585a0d995f3686e66fc4e39684431512f50;p=thirdparty%2Fapache%2Fhttpd.git Unsure why win32 never noticed this, but the value returned is a const char* git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@384731 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/arch/win32/mod_isapi.c b/modules/arch/win32/mod_isapi.c index bf99360e0ff..0ac11d757b3 100644 --- a/modules/arch/win32/mod_isapi.c +++ b/modules/arch/win32/mod_isapi.c @@ -629,7 +629,7 @@ static apr_ssize_t send_response_header(isapi_cid *cid, { int head_present = 1; int termarg; - char *termch; + const char *termch; apr_size_t ate = 0; if (!head || headlen == 0 || !*head) {