]> 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:10:07 +0000 (16:10 +0000)
committerChris Darroch <chrisd@apache.org>
Mon, 7 Oct 2013 16:10:07 +0000 (16:10 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1529988 13f79535-47bb-0310-9956-ffa450edef68

include/http_protocol.h

index 93824bf238a89b922bf6e94ce9ce51763ab7b4cf..ee61b6876950e3bfc3df3cc3d6eb4b6257dda201 100644 (file)
@@ -506,7 +506,7 @@ AP_DECLARE(long) ap_get_client_block(request_rec *r, char *buffer, apr_size_t bu
  * 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.