summaryrefslogtreecommitdiff
path: root/modules/test
diff options
context:
space:
mode:
authorGreg Stein <gstein@apache.org>2000-11-23 13:03:46 +0000
committerGreg Stein <gstein@apache.org>2000-11-23 13:03:46 +0000
commitd0968eb9af5fce12b95ae910f4df121999e78599 (patch)
tree04e56f638f3ef82349effdfd698ac1b9e0907a88 /modules/test
parente570b2c6f27660c25cf75bd2863f0bf9442a092c (diff)
downloadhttpd-d0968eb9af5fce12b95ae910f4df121999e78599.tar.gz
add the "next filter" parameter to the rest of the ap_sub_req_* calls.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87076 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/test')
-rw-r--r--modules/test/mod_autoindex.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/test/mod_autoindex.c b/modules/test/mod_autoindex.c
index 3329d8da14..793fa19de4 100644
--- a/modules/test/mod_autoindex.c
+++ b/modules/test/mod_autoindex.c
@@ -974,7 +974,7 @@ static void emit_head(request_rec *r, char *header_fname, int suppress_amble,
* pretend there's nothing there.
*/
if ((header_fname != NULL)
- && (rr = ap_sub_req_lookup_uri(header_fname, r))
+ && (rr = ap_sub_req_lookup_uri(header_fname, r, NULL))
&& (rr->status == HTTP_OK)
&& (rr->filename != NULL)
&& rr->finfo.filetype == APR_REG) {
@@ -1057,7 +1057,7 @@ static void emit_tail(request_rec *r, char *readme_fname, int suppress_amble)
* pretend there's nothing there.
*/
if ((readme_fname != NULL)
- && (rr = ap_sub_req_lookup_uri(readme_fname, r))
+ && (rr = ap_sub_req_lookup_uri(readme_fname, r, NULL))
&& (rr->status == HTTP_OK)
&& (rr->filename != NULL)
&& rr->finfo.filetype == APR_REG) {
@@ -1184,7 +1184,7 @@ static struct ent *make_autoindex_entry(char *name, int autoindex_opts,
p->version_sort = autoindex_opts & VERSION_SORT;
if (autoindex_opts & FANCY_INDEXING) {
- request_rec *rr = ap_sub_req_lookup_file(name, r);
+ request_rec *rr = ap_sub_req_lookup_file(name, r, NULL);
if (rr->finfo.protection != 0) {
p->lm = rr->finfo.mtime;