diff options
author | Jeff Trawick <trawick@apache.org> | 2002-03-28 12:17:59 +0100 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2002-03-28 12:17:59 +0100 |
commit | 8f04ed6a4d8c210b2bdb996e5592f2c7a17f94cf (patch) | |
tree | 3d0a0b41c63371966118994c4169550fe6c5d4d2 /modules/experimental/mod_example.c | |
parent | remove error msg hint that is no longer true (diff) | |
download | apache2-8f04ed6a4d8c210b2bdb996e5592f2c7a17f94cf.tar.xz apache2-8f04ed6a4d8c210b2bdb996e5592f2c7a17f94cf.zip |
signature of quick_handler hook changed
(mod_example's quick_handler hook doesn't have to do anything
with the new parameter)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94262 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/experimental/mod_example.c')
-rw-r--r-- | modules/experimental/mod_example.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/experimental/mod_example.c b/modules/experimental/mod_example.c index 2fb992f367..61592b20e3 100644 --- a/modules/experimental/mod_example.c +++ b/modules/experimental/mod_example.c @@ -1008,7 +1008,7 @@ static void x_insert_filter(request_rec *r) * server will still call any remaining modules with an handler for this * phase. */ -static int x_quick_handler(request_rec *r) +static int x_quick_handler(request_rec *r, int lookup_uri) { x_cfg *cfg; |