diff options
author | Jeff Trawick <trawick@apache.org> | 2002-08-30 03:06:14 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2002-08-30 03:06:14 +0200 |
commit | 345b9bf855e9d0bb608720a8a6ec75a922b97753 (patch) | |
tree | 466009d67bf7050421d3d2ad353e703845418cb6 /modules | |
parent | Document the Good News about Jaguar (OS X 10.2) (diff) | |
download | apache2-345b9bf855e9d0bb608720a8a6ec75a922b97753.tar.xz apache2-345b9bf855e9d0bb608720a8a6ec75a922b97753.zip |
fix a type mismatch
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96583 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mappers/mod_rewrite.c | 2 |
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; } |