From: Chris Darroch Date: Mon, 7 Oct 2013 16:14:39 +0000 (+0000) Subject: Correct typo in comments for ap_map_http_request_error(). X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5e081c60769f60e092cbdc222c1d134b3a2da6bb;p=thirdparty%2Fapache%2Fhttpd.git Correct typo in comments for ap_map_http_request_error(). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1529991 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_filters.c b/modules/http/http_filters.c index 38d326b5431..c92acf606db 100644 --- a/modules/http/http_filters.c +++ b/modules/http/http_filters.c @@ -1297,7 +1297,7 @@ AP_CORE_DECLARE_NONSTD(apr_status_t) ap_http_header_filter(ap_filter_t *f, * Map specific APR codes returned by the filter stack to HTTP error * codes, or the default status code provided. Use it as follows: * - * return ap_map_http_response(rv, HTTP_BAD_REQUEST); + * return ap_map_http_request_error(rv, HTTP_BAD_REQUEST); * * If the filter has already handled the error, AP_FILTER_ERROR will * be returned, which is cleanly passed through.