From: Bradley Nicholes Date: Wed, 12 Sep 2001 15:39:35 +0000 (+0000) Subject: Fixed a compile problem for Win32 and NetWare X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4e0c86e802578df979864d84381efab4537054c;p=thirdparty%2Fapache%2Fhttpd.git Fixed a compile problem for Win32 and NetWare git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91010 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/modules/standard/mod_auth.c b/src/modules/standard/mod_auth.c index f3f4e3921cf..20959675477 100644 --- a/src/modules/standard/mod_auth.c +++ b/src/modules/standard/mod_auth.c @@ -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