Received: by taz.hyperreal.com (8.8.3/V2.0) id KAA13168; Tue, 3 Dec 1996 10:22:46 -0800 (PST) Received: from sierra.zyzzyva.com by taz.hyperreal.com (8.8.3/V2.0) with ESMTP id KAA13164; Tue, 3 Dec 1996 10:22:41 -0800 (PST) Received: from sierra.zyzzyva.com (localhost [127.0.0.1]) by sierra.zyzzyva.com (8.8.2/8.8.2) with ESMTP id MAA00856 for ; Tue, 3 Dec 1996 12:23:47 -0600 (CST) Message-Id: <199612031823.MAA00856@sierra.zyzzyva.com> To: new-httpd@hyperreal.com Subject: Re: cvs commit: apache/src conf.h In-reply-to: ben's message of Tue, 03 Dec 1996 09:44:30 -0800. <199612031744.JAA10080@taz.hyperreal.com> X-uri: http://www.zyzzyva.com/ Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 03 Dec 1996 12:23:46 -0600 From: Randy Terbush Sender: new-httpd-owner@apache.org Precedence: bulk Reply-To: new-httpd@hyperreal.com Are these masks even valid if they don't exist in the OS includes? > ben 96/12/03 09:44:28 > > Modified: src conf.h > Log: > NeXT fix. > > Revision Changes Path > 1.52 +7 -0 apache/src/conf.h > > Index: conf.h > =================================================================== > RCS file: /export/home/cvs/apache/src/conf.h,v > retrieving revision 1.51 > retrieving revision 1.52 > diff -C3 -r1.51 -r1.52 > *** conf.h 1996/12/03 17:35:28 1.51 > --- conf.h 1996/12/03 17:44:24 1.52 > *************** > *** 188,193 **** > --- 188,200 ---- > #ifndef S_IWUSR > #define S_IWUSR S_IWRITE > #endif > + #ifndef S_IWGRP > + #define S_IWGRP 000020 > + #endif > + #ifndef S_IWOTH > + #define S_IWOTH 000002 > + #endif > + > #define STDIN_FILENO 0 > #define STDOUT_FILENO 1 > #define STDERR_FILENO 2 > > >