]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
No file owner/groups on OS/2 either.
authorBrian Havard <bjh@apache.org>
Wed, 12 Sep 2001 15:48:01 +0000 (15:48 +0000)
committerBrian Havard <bjh@apache.org>
Wed, 12 Sep 2001 15:48:01 +0000 (15:48 +0000)
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

index 20959675477cc0bca6d99b4b18ff2519d47a6bdf..b0a07ccff78f63a0b7d1cf0deabc70cfbb37026a 100644 (file)
@@ -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;