diff options
author | Eric Covener <covener@apache.org> | 2021-07-02 12:28:59 +0000 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2021-07-02 12:28:59 +0000 |
commit | 90743b00c7ff34f1fa45d51cb29b9b21209f776a (patch) | |
tree | af1b603c3d50489660ab8e04c057a5e63562d247 /modules/http | |
parent | 1a0e700383b6c71ffd49a159dc0fd4d6db10e31f (diff) | |
download | httpd-90743b00c7ff34f1fa45d51cb29b9b21209f776a.tar.gz |
remove extra whitespace in HTTP_NOT_IMPLEMENTED
Github: closes #196
Submitted By: Rajeeva Lochana
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1891200 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http')
-rw-r--r-- | modules/http/http_protocol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c index fd6fb88dbf..9cae54aee7 100644 --- a/modules/http/http_protocol.c +++ b/modules/http/http_protocol.c @@ -1013,7 +1013,7 @@ static const char *get_canned_error_string(int status, case HTTP_NOT_IMPLEMENTED: s1 = apr_pstrcat(p, "<p>", - ap_escape_html(r->pool, r->method), " ", + ap_escape_html(r->pool, r->method), " not supported for current URL.<br />\n", NULL); return(add_optional_notes(r, s1, "error-notes", "</p>\n")); |