]> granicus.if.org Git - apache/commitdiff
Correct typo in comments for ap_map_http_request_error().
authorChris Darroch <chrisd@apache.org>
Mon, 7 Oct 2013 16:14:39 +0000 (16:14 +0000)
committerChris Darroch <chrisd@apache.org>
Mon, 7 Oct 2013 16:14:39 +0000 (16:14 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1529991 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_filters.c

index 38d326b5431289e7b06824693bd314e0aad0f4f2..c92acf606dbde35a525eb7e32dcdcadf858d939f 100644 (file)
@@ -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.