From ddcd2c5c387d3652549e01b0953494438eff06d7 Mon Sep 17 00:00:00 2001 From: Brian Havard Date: Wed, 12 Sep 2001 15:48:01 +0000 Subject: [PATCH] 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 --- src/modules/standard/mod_auth.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.47.2