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-Tag: 2.5.0-alpha~4969 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=151a95ae46c7f6ea65b868813adfbb4dbbf7c0d8;p=apache 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 38d326b543..c92acf606d 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.