summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2002-08-30 01:06:14 +0000
committerJeff Trawick <trawick@apache.org>2002-08-30 01:06:14 +0000
commit345b9bf855e9d0bb608720a8a6ec75a922b97753 (patch)
tree466009d67bf7050421d3d2ad353e703845418cb6
parenta7bd20aa86a20d2655b3fc9f2bf700ca6799d380 (diff)
downloadhttpd-345b9bf855e9d0bb608720a8a6ec75a922b97753.tar.gz
fix a type mismatch
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96583 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--modules/mappers/mod_rewrite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c
index c39ae6de41..77aa7d910e 100644
--- a/modules/mappers/mod_rewrite.c
+++ b/modules/mappers/mod_rewrite.c
@@ -4156,7 +4156,7 @@ static void add_cookie(request_rec *r, char *s)
/* FIX: use cached time similar to how logging does it */
request_rec *rmain = r;
char *notename;
- char *data;
+ void *data;
while (rmain->main) {
rmain = rmain->main;
}