Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 23708 invoked by uid 500); 12 Sep 2001 15:52:26 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 23693 invoked by uid 500); 12 Sep 2001 15:52:26 -0000 Delivered-To: apmail-apache-1.3-cvs@apache.org Date: 12 Sep 2001 15:48:01 -0000 Message-ID: <20010912154801.64986.qmail@icarus.apache.org> From: bjh@apache.org To: apache-1.3-cvs@apache.org Subject: cvs commit: apache-1.3/src/modules/standard mod_auth.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N bjh 01/09/12 08:48:01 Modified: src/modules/standard mod_auth.c Log: No file owner/groups on OS/2 either. Revision Changes Path 1.56 +2 -2 apache-1.3/src/modules/standard/mod_auth.c Index: mod_auth.c =================================================================== RCS file: /home/cvs/apache-1.3/src/modules/standard/mod_auth.c,v retrieving revision 1.55 retrieving revision 1.56 diff -u -r1.55 -r1.56 --- mod_auth.c 2001/09/12 15:39:35 1.55 +++ mod_auth.c 2001/09/12 15:48:01 1.56 @@ -278,7 +278,7 @@ * 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 @@ #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;