You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@hyperreal.org on 1998/07/08 02:23:43 UTC

cvs commit: apache-1.3/src/include conf.h

jim         98/07/07 17:23:43

  Modified:    src      CHANGES
               src/include conf.h
  Log:
  PR:2398
  Submitted by:	Kristian Kraemmer Nielsen <jk...@ctav.com>
  Reviewed by:	Jim Jagielski
  Change 'nobody' to 'nogroup for DEFAULT_GROUP under AIX
  
  Revision  Changes    Path
  1.951     +3 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.950
  retrieving revision 1.951
  diff -u -r1.950 -r1.951
  --- CHANGES	1998/07/07 23:19:22	1.950
  +++ CHANGES	1998/07/08 00:23:39	1.951
  @@ -1,5 +1,8 @@
   Changes with Apache 1.3.1
   
  +  *) AIX was sing 'nobody' instead of 'nogroup' for DEFAULT_GROUP.
  +     [Kristian Kraemmer Nielsen <jk...@ctav.com>] PR#2398
  +
     *) suexec's error messages have been clarified a little bit.  [Ken Coar]
   
     *) PORT: Apache is not 8-bit clean in many settings, a problem we're
  
  
  
  1.218     +1 -1      apache-1.3/src/include/conf.h
  
  Index: conf.h
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/include/conf.h,v
  retrieving revision 1.217
  retrieving revision 1.218
  diff -u -r1.217 -r1.218
  --- conf.h	1998/06/20 11:20:38	1.217
  +++ conf.h	1998/07/08 00:23:41	1.218
  @@ -242,7 +242,7 @@
   #define USE_MMAP_FILES
   #define HAVE_SYSLOG 1
   #ifndef DEFAULT_GROUP
  -#define DEFAULT_GROUP "nobody"
  +#define DEFAULT_GROUP "nogroup"
   #endif
   #endif
   #ifndef DEFAULT_USER
  
  
  

Re: cvs commit: apache-1.3/src/include conf.h

Posted by Marc Slemko <ma...@worldgate.com>.
The OS-specific sections of conf.h are just that; os specific.  If they
were supposed to be the default, then they would just be the default and
we wouldn't set them explicitly.

In this case, AIX ships with a nobody group and not a nogroup group so it
was correct as it was.

On 8 Jul 1998 jim@hyperreal.org wrote:

> jim         98/07/07 17:23:43
> 
>   Modified:    src      CHANGES
>                src/include conf.h
>   Log:
>   PR:2398
>   Submitted by:	Kristian Kraemmer Nielsen <jk...@ctav.com>
>   Reviewed by:	Jim Jagielski
>   Change 'nobody' to 'nogroup for DEFAULT_GROUP under AIX
>