Commit 07f8c829 authored by Doug MacEachern's avatar Doug MacEachern
Browse files

adjust to UNP_ -> APR_URI_UNP_ rename


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90359 13f79535-47bb-0310-9956-ffa450edef68
parent 7f5ffaeb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -288,7 +288,7 @@ dav_lookup_result dav_lookup_uri(const char *uri, request_rec * r,
       the current request. Therefore, we can use ap_sub_req_lookup_uri() */

    /* reconstruct a URI as just the path */
    new_file = apr_uri_unparse_components(r->pool, &comp, UNP_OMITSITEPART);
    new_file = apr_uri_unparse_components(r->pool, &comp, APR_URI_UNP_OMITSITEPART);

    /*
     * Lookup the URI and return the sub-request. Note that we use the
+1 −1
Original line number Diff line number Diff line
@@ -321,7 +321,7 @@ AP_DECLARE(int) ap_update_child_status(int child_num, int thread_num, int status
	    } else {
		/* Don't reveal the password in the server-status view */
		    apr_cpystrn(ws->request, apr_pstrcat(r->pool, r->method, " ",
					       apr_uri_unparse_components(r->pool, &r->parsed_uri, UNP_OMITPASSWORD),
					       apr_uri_unparse_components(r->pool, &r->parsed_uri, APR_URI_UNP_OMITPASSWORD),
					       r->assbackwards ? NULL : " ", r->protocol, NULL),
				       sizeof(ws->request));
	    }