You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ch...@apache.org on 2013/10/07 18:14:39 UTC

svn commit: r1529991 - /httpd/httpd/trunk/modules/http/http_filters.c

Author: chrisd
Date: Mon Oct  7 16:14:39 2013
New Revision: 1529991

URL: http://svn.apache.org/r1529991
Log:
Correct typo in comments for ap_map_http_request_error().

Modified:
    httpd/httpd/trunk/modules/http/http_filters.c

Modified: httpd/httpd/trunk/modules/http/http_filters.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http/http_filters.c?rev=1529991&r1=1529990&r2=1529991&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http/http_filters.c (original)
+++ httpd/httpd/trunk/modules/http/http_filters.c Mon Oct  7 16:14:39 2013
@@ -1297,7 +1297,7 @@ AP_CORE_DECLARE_NONSTD(apr_status_t) ap_
  * 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.