]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fixed a compile problem for Win32 and NetWare
authorBradley Nicholes <bnicholes@apache.org>
Wed, 12 Sep 2001 15:39:35 +0000 (15:39 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Wed, 12 Sep 2001 15:39:35 +0000 (15:39 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91010 13f79535-47bb-0310-9956-ffa450edef68

src/modules/standard/mod_auth.c

index f3f4e3921cf98d4efc86f9a19ec3dbad8eec1432..20959675477cc0bca6d99b4b18ff2519d47a6bdf 100644 (file)
@@ -279,7 +279,7 @@ static int check_user_access(request_rec *r)
          */
        if (strcmp(w, "file-owner") == 0) {
 #if defined(WIN32) || defined(NETWARE)
-            ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_ERROR, r,
+            ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, r,
                           "'Require file-user' not supported on this platform");
             return HTTP_UNAUTHORIZED;
 #else
@@ -314,7 +314,7 @@ static int check_user_access(request_rec *r)
         }
        if (strcmp(w, "file-group") == 0) {
 #if defined(WIN32) || defined(NETWARE)
-            ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_ERROR, r,
+            ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, r,
                           "'Require file-group' not supported on this platform");
             return HTTP_UNAUTHORIZED;
 #else