diff options
author | Greg Stein <gstein@apache.org> | 2000-11-23 11:08:19 +0100 |
---|---|---|
committer | Greg Stein <gstein@apache.org> | 2000-11-23 11:08:19 +0100 |
commit | fe0a05c1829ba239066caeb6ad8307f47fa703df (patch) | |
tree | b0b5172bd6c86975cb0aa3ef771c69244f2db061 /modules/dav/main/util.c | |
parent | Fix a few broken links. (diff) | |
download | apache2-fe0a05c1829ba239066caeb6ad8307f47fa703df.tar.xz apache2-fe0a05c1829ba239066caeb6ad8307f47fa703df.zip |
*) fix subtle crasher in COPY method
*) update sub-request-creation calls to include new "next filter" arg
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87072 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | modules/dav/main/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dav/main/util.c b/modules/dav/main/util.c index c845a6422e..e4946d9a89 100644 --- a/modules/dav/main/util.c +++ b/modules/dav/main/util.c @@ -275,7 +275,7 @@ dav_lookup_result dav_lookup_uri(const char *uri, request_rec * r) * same HTTP method on the destination. This allows the destination * to apply appropriate restrictions (e.g. readonly). */ - result.rnew = ap_sub_req_method_uri(r->method, new_file, r); + result.rnew = ap_sub_req_method_uri(r->method, new_file, r, NULL); return result; } |