You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2002/09/28 01:53:04 UTC

cvs commit: httpd-2.0/support suexec.h

rbb         2002/09/27 16:53:04

  Modified:    .        CHANGES
               support  suexec.h
  Log:
  SuExec should use /usr/local/apache2 not /usr/local/apache as the default
  directory.
  
  PR:     8789, 13104
  Submitted by:   SangBeom han <sb...@os.korea.ac.kr>
  
  Revision  Changes    Path
  1.939     +4 -0      httpd-2.0/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/CHANGES,v
  retrieving revision 1.938
  retrieving revision 1.939
  diff -u -r1.938 -r1.939
  --- CHANGES	27 Sep 2002 08:49:47 -0000	1.938
  +++ CHANGES	27 Sep 2002 23:53:04 -0000	1.939
  @@ -1,5 +1,9 @@
   Changes with Apache 2.0.43
   
  +  *) SuExec needs to use the same default directory as the rest of
  +     server, namely /usr/local/apache2.  
  +     [SangBeom han <sb...@os.korea.ac.kr>]
  +
     *) Get mod_auth_ldap to retry connections on LDAP_SERVER_DOWN.
        [Thomas Bennett <th...@eds.com>, Graham Leggett]
   
  
  
  
  1.7       +2 -2      httpd-2.0/support/suexec.h
  
  Index: suexec.h
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/support/suexec.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- suexec.h	13 Mar 2002 20:48:06 -0000	1.6
  +++ suexec.h	27 Sep 2002 23:53:04 -0000	1.7
  @@ -117,7 +117,7 @@
    *             debugging purposes.
    */
   #ifndef AP_LOG_EXEC
  -#define AP_LOG_EXEC "/usr/local/apache/logs/cgi.log"	/* Need me? */
  +#define AP_LOG_EXEC "/usr/local/apache2/logs/cgi.log"	/* Need me? */
   #endif
   
   /*
  @@ -126,7 +126,7 @@
    *             that can be used for suEXEC behavior.
    */
   #ifndef AP_DOC_ROOT
  -#define AP_DOC_ROOT "/usr/local/apache/htdocs"
  +#define AP_DOC_ROOT "/usr/local/apache2/htdocs"
   #endif
   
   /*