summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2007-12-12 19:46:43 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2007-12-12 19:46:43 +0000
commit70308c1f8b2a0d4e636785bd718a44ca77247e12 (patch)
tree0f418b1f89651c77ac77f0279f1f9f2bdaa708dd /modules
parente9c2993590f675fd3cf851e62b89913e98566ed5 (diff)
downloadhttpd-70308c1f8b2a0d4e636785bd718a44ca77247e12.tar.gz
Revert r603712 which was prematurely committed (leave the STATUS
mop-up in place) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@603714 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules')
-rw-r--r--modules/http/http_protocol.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c
index d521842b7b..d773045c22 100644
--- a/modules/http/http_protocol.c
+++ b/modules/http/http_protocol.c
@@ -2200,7 +2200,7 @@ static const char *get_canned_error_string(int status,
case HTTP_LENGTH_REQUIRED:
s1 = apr_pstrcat(p,
"<p>A request of the requested method ",
- ap_escape_html(r->pool, r->method),
+ r->method,
" requires a valid Content-length.<br />\n",
NULL);
return(add_optional_notes(r, s1, "error-notes", "</p>\n"));
@@ -2247,7 +2247,7 @@ static const char *get_canned_error_string(int status,
"The requested resource<br />",
ap_escape_html(r->pool, r->uri), "<br />\n",
"does not allow request data with ",
- ap_escape_html(r->pool, r->method),
+ r->method,
" requests, or the amount of data provided in\n"
"the request exceeds the capacity limit.\n",
NULL));