]> granicus.if.org Git - apache/commitdiff
Use the correct logging #define
authorBradley Nicholes <bnicholes@apache.org>
Mon, 23 Jan 2006 20:22:37 +0000 (20:22 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Mon, 23 Jan 2006 20:22:37 +0000 (20:22 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@371648 13f79535-47bb-0310-9956-ffa450edef68

modules/aaa/mod_access_compat.c

index cf608d1d7e2ee2a539614843f60e89cc964b16ec..292ae55a959e3f47dfcb90b20bd47ec593288087 100644 (file)
@@ -98,7 +98,7 @@ static const char *order(cmd_parms *cmd, void *dv, const char *arg)
     access_compat_dir_conf *d = (access_compat_dir_conf *) dv;
     int i, o;
 
-    ap_log_error(APLOG_MARK, LOG_WARNING, 0, cmd->server,
+    ap_log_error(APLOG_MARK, APLOG_WARNING, 0, cmd->server,
                   "The 'Order' directive has been deprecated. "
                   "Consider using '<SatisfyAll><SatisfyOne>' directives."); 
 
@@ -124,7 +124,7 @@ static const char *satisfy(cmd_parms *cmd, void *dv, const char *arg)
     int satisfy = SATISFY_NOSPEC;
     int i;
 
-    ap_log_error(APLOG_MARK, LOG_WARNING, 0, cmd->server,
+    ap_log_error(APLOG_MARK, APLOG_WARNING, 0, cmd->server,
                   "The 'Satisfy' directive has been deprecated. "
                   "Consider using '<SatisfyAll><SatisfyOne>' directives."); 
 
@@ -157,7 +157,7 @@ static const char *allow_cmd(cmd_parms *cmd, void *dv, const char *from,
     char msgbuf[120];
     apr_status_t rv;
 
-    ap_log_error(APLOG_MARK, LOG_WARNING, 0, cmd->server,
+    ap_log_error(APLOG_MARK, APLOG_WARNING, 0, cmd->server,
                   "The 'Allow/Deny' directives have been deprecated. "
                   "Consider using one of the host providers in mod_authz_host.");