]> granicus.if.org Git - apache/commitdiff
revert r1023227 as discussed on httpd-dev:
authorStefan Fritsch <sf@apache.org>
Tue, 19 Oct 2010 17:44:36 +0000 (17:44 +0000)
committerStefan Fritsch <sf@apache.org>
Tue, 19 Oct 2010 17:44:36 +0000 (17:44 +0000)
    core: Log a warning if <Limit> or <LimitExcept> are used. They are
    deprecated and may go away in 2.4.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1024337 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
server/core.c

diff --git a/CHANGES b/CHANGES
index cef43ef3f1011f291cb58160120c8bbaa4c73ada..c5212cf3983ea2f2e4d93843d0e0e17a9ff9e6a4 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -10,9 +10,6 @@ Changes with Apache 2.3.9
      interfering with authentication/authorization. [Paul Querna,
      Igor Galić, Stefan Fritsch]
 
-  *) core: Log a warning if <Limit> or <LimitExcept> are used. They are
-     deprecated and may go away in 2.4. [Stefan Fritsch]
-
   *) mod_ssl: Log certificate information if client cert verification
      fails. PR 50094. [Lassi Tuura <lat cern ch>, Stefan Fritsch]
 
index 236067c12a135c281fda517e829a45eaa28099c7..50f82029f7eb5d4a79abe528c4bb62a0232ec5b0 100644 (file)
@@ -1664,12 +1664,6 @@ AP_CORE_DECLARE_NONSTD(const char *) ap_limit_section(cmd_parms *cmd,
         return unclosed_directive(cmd);
     }
 
-    ap_log_error(APLOG_MARK, APLOG_WARNING, 0, NULL,
-                 "%s:%d: <Limit> and <LimitExcept> are deprecated and "
-                 "will likely be removed in 2.4. Use 'Require method', "
-                 "mod_allow_method, or <If> instead.",
-                 cmd->directive->filename, cmd->directive->line_num);
-
     limited_methods = apr_pstrndup(cmd->pool, arg, endp - arg);
 
     if (!limited_methods[0]) {
@@ -3392,11 +3386,11 @@ AP_INIT_RAW_ARGS("<Files", filesection, NULL, OR_ALL,
   "Container for directives affecting files matching specified patterns"),
 AP_INIT_RAW_ARGS("<Limit", ap_limit_section, NULL, OR_LIMIT | OR_AUTHCFG,
   "Container for authentication directives when accessed using specified HTTP "
-  "methods (DEPRECATED)"),
+  "methods"),
 AP_INIT_RAW_ARGS("<LimitExcept", ap_limit_section, (void*)1,
                  OR_LIMIT | OR_AUTHCFG,
   "Container for authentication directives to be applied when any HTTP "
-  "method other than those specified is used to access the resource (DEPRECATED)"),
+  "method other than those specified is used to access the resource"),
 AP_INIT_TAKE1("<IfModule", start_ifmod, NULL, EXEC_ON_READ | OR_ALL,
   "Container for directives based on existence of specified modules"),
 AP_INIT_TAKE1("<IfDefine", start_ifdefine, NULL, EXEC_ON_READ | OR_ALL,