diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2005-01-02 05:33:44 +0000 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2005-01-02 05:33:44 +0000 |
commit | d962fcfc8b3946aa999f0e231170837f4922ccb5 (patch) | |
tree | 8978c3c7d0655f23f8d0513cd13c9b7a4a4d7744 /modules/dav/main/util.c | |
parent | 55230b229bcd5128e9b829127e1ab0ae4143f0ba (diff) | |
download | httpd-d962fcfc8b3946aa999f0e231170837f4922ccb5.tar.gz |
FINALLY Correct ap_http_method()! It is NOT a method, it's a SCHEME!
Bumped mmn, and ap module cookie, for this function rename.
It's not a deprecation, as ap_http_method would be a lovely function
name sometime in the future: to determine what the function name implies.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@123882 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/dav/main/util.c')
-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 7919d62abf..c1bc5f92b1 100644 --- a/modules/dav/main/util.c +++ b/modules/dav/main/util.c @@ -204,7 +204,7 @@ dav_lookup_result dav_lookup_uri(const char *uri, request_rec * r, /* ### not sure this works if the current request came in via https: */ scheme = r->parsed_uri.scheme; if (scheme == NULL) - scheme = ap_http_method(r); + scheme = ap_http_scheme(r); /* insert a port if the URI did not contain one */ if (comp.port == 0) |