You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Dean Gaudet <dg...@hyperreal.org> on 1997/09/26 05:09:43 UTC

cvs commit: apachen/src/support suexec.c

dgaudet     97/09/25 20:09:43

  Modified:    src      CHANGES
               src/support suexec.c
  Log:
  suexec.c wouldn't build without -DLOG_EXEC
  
  Submitted by:	Jason A. Dour
  Reviewed by:	Dean Gaudet, Randy Terbush, Roy Fielding
  
  Revision  Changes    Path
  1.447     +2 -0      apachen/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/CHANGES,v
  retrieving revision 1.446
  retrieving revision 1.447
  diff -u -r1.446 -r1.447
  --- CHANGES	1997/09/26 02:59:07	1.446
  +++ CHANGES	1997/09/26 03:09:39	1.447
  @@ -1,5 +1,7 @@
   Changes with Apache 1.3b1
   
  +  *) suexec.c wouldn't build without -DLOG_EXEC. [Jason A. Dour]
  +
     *) mod_autoindex improperly counted &escapes; as more than one
        character in the description.  It also improperly truncated
        descriptions that were exactly the maximum length.
  
  
  
  1.26      +2 -0      apachen/src/support/suexec.c
  
  Index: suexec.c
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/support/suexec.c,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- suexec.c	1997/09/14 22:48:10	1.25
  +++ suexec.c	1997/09/26 03:09:42	1.26
  @@ -156,6 +156,7 @@
   
   static void err_output(const char *fmt, va_list ap)
   {
  +#ifdef LOG_EXEC
       time_t timevar;
       struct tm *lt;
   
  @@ -175,6 +176,7 @@
       vfprintf(log, fmt, ap);
   
       fflush(log);
  +#endif /* LOG_EXEC */
       return;
   }