summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2006-03-10 08:58:56 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2006-03-10 08:58:56 +0000
commit6b45e585a0d995f3686e66fc4e39684431512f50 (patch)
treeec2eb4ec1b808e35202a84d98a976e82c688a434 /modules
parent7e9ad095bf8495ae0f1caa718aa0dae1bfec3e5e (diff)
downloadhttpd-6b45e585a0d995f3686e66fc4e39684431512f50.tar.gz
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
Diffstat (limited to 'modules')
-rw-r--r--modules/arch/win32/mod_isapi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/arch/win32/mod_isapi.c b/modules/arch/win32/mod_isapi.c
index bf99360e0f..0ac11d757b 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) {