From e9c365911b7186d3f7cfba6f7e8a16373348b3e7 Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Mon, 7 Jul 2003 13:02:28 +0000 Subject: [PATCH] Minor wordsmithing git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@100474 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/http_core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/http_core.c b/src/main/http_core.c index d7703c69d57..9d1df2e6a36 100644 --- a/src/main/http_core.c +++ b/src/main/http_core.c @@ -3217,7 +3217,7 @@ static const char *set_recursion_limit(cmd_parms *cmd, void *dummy, 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 @@ static const char *set_recursion_limit(cmd_parms *cmd, void *dummy, 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, -- 2.47.3