From: Jeff Trawick Date: Sun, 19 Oct 2003 13:20:57 +0000 (+0000) Subject: fix wording of warning for ErrorDocument 401 full-URL X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd0b2805a3c0fbccf2256182ae4907b9edd10258;p=thirdparty%2Fapache%2Fhttpd.git fix wording of warning for ErrorDocument 401 full-URL Reviewed by: jim, jwoolley git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@101491 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/STATUS b/STATUS index 562497eb02d..aa5c59b0466 100644 --- a/STATUS +++ b/STATUS @@ -1,5 +1,5 @@ APACHE 1.3 STATUS: -*-text-*- - Last modified at [$Date: 2003/10/19 13:18:57 $] + Last modified at [$Date: 2003/10/19 13:20:57 $] Release: @@ -58,11 +58,6 @@ RELEASE SHOWSTOPPERS: Message-Id: <3F8C56E3.8050501@attglobal.net> +1: jeff, jim - * fix wording of warning for ErrorDocument 401 full-URL - Message-ID: <3F8BE7D2.6060209@attglobal.net> - +1: jeff, jim, jwoolley - - RELEASE NON-SHOWSTOPPERS BUT WOULD BE REAL NICE TO WRAP THESE UP: * Current vote on 3 PRs for inclusion: diff --git a/src/main/http_core.c b/src/main/http_core.c index 9d1df2e6a36..0896698be84 100644 --- a/src/main/http_core.c +++ b/src/main/http_core.c @@ -1276,7 +1276,7 @@ static const char *set_error_document(cmd_parms *cmd, core_dir_config *conf, if (error_number == 401 && line[0] != '/' && line[0] != '"') { /* Ignore it... */ ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_NOTICE, cmd->server, - "cannot use a full or relative URL in a 401 ErrorDocument " + "cannot use a full URL in a 401 ErrorDocument " "directive --- ignoring!"); } else { /* Store it... */