From: Brian Havard Date: Wed, 12 Sep 2001 15:48:01 +0000 (+0000) Subject: No file owner/groups on OS/2 either. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ddcd2c5c387d3652549e01b0953494438eff06d7;p=thirdparty%2Fapache%2Fhttpd.git No file owner/groups on OS/2 either. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91011 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/modules/standard/mod_auth.c b/src/modules/standard/mod_auth.c index 20959675477..b0a07ccff78 100644 --- a/src/modules/standard/mod_auth.c +++ b/src/modules/standard/mod_auth.c @@ -278,7 +278,7 @@ static int check_user_access(request_rec *r) * owner of the document. */ if (strcmp(w, "file-owner") == 0) { -#if defined(WIN32) || defined(NETWARE) +#if defined(WIN32) || defined(NETWARE) || defined(OS2) ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, r, "'Require file-user' not supported on this platform"); return HTTP_UNAUTHORIZED; @@ -313,7 +313,7 @@ static int check_user_access(request_rec *r) #endif } if (strcmp(w, "file-group") == 0) { -#if defined(WIN32) || defined(NETWARE) +#if defined(WIN32) || defined(NETWARE) || defined(OS2) ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, r, "'Require file-group' not supported on this platform"); return HTTP_UNAUTHORIZED;