Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 57796 invoked by uid 500); 7 Jul 2003 13:02:31 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 57781 invoked by uid 500); 7 Jul 2003 13:02:30 -0000 Delivered-To: apmail-apache-1.3-cvs@apache.org Date: 7 Jul 2003 13:02:30 -0000 Message-ID: <20030707130230.14877.qmail@icarus.apache.org> From: jim@apache.org To: apache-1.3-cvs@apache.org Subject: cvs commit: apache-1.3/src/main http_core.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N jim 2003/07/07 06:02:29 Modified: src/main http_core.c Log: Minor wordsmithing Revision Changes Path 1.325 +2 -2 apache-1.3/src/main/http_core.c Index: http_core.c =================================================================== RCS file: /home/cvs/apache-1.3/src/main/http_core.c,v retrieving revision 1.324 retrieving revision 1.325 diff -u -r1.324 -r1.325 --- http_core.c 7 Jul 2003 00:34:10 -0000 1.324 +++ http_core.c 7 Jul 2003 13:02:28 -0000 1.325 @@ -3217,7 +3217,7 @@ int limit = atoi(arg1); if (limit < 0) { - return "The recursion limit must be greater than zero."; + return "The redirect recursion limit cannot be less than zero."; } if (limit && limit < 4) { ap_log_error(APLOG_MARK, APLOG_WARNING|APLOG_NOERRNO, cmd->server, @@ -3231,7 +3231,7 @@ limit = atoi(arg2); if (limit < 0) { - return "The recursion limit must be greater than zero."; + return "The subrequest recursion limit cannot be less than zero."; } if (limit && limit < 4) { ap_log_error(APLOG_MARK, APLOG_WARNING|APLOG_NOERRNO, cmd->server,