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:10:07 UTC

svn commit: r1529988 - /httpd/httpd/trunk/include/http_protocol.h

Author: chrisd
Date: Mon Oct  7 16:10:07 2013
New Revision: 1529988

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

Modified:
    httpd/httpd/trunk/include/http_protocol.h

Modified: httpd/httpd/trunk/include/http_protocol.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/http_protocol.h?rev=1529988&r1=1529987&r2=1529988&view=diff
==============================================================================
--- httpd/httpd/trunk/include/http_protocol.h (original)
+++ httpd/httpd/trunk/include/http_protocol.h Mon Oct  7 16:10:07 2013
@@ -506,7 +506,7 @@ AP_DECLARE(long) ap_get_client_block(req
  * 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.