brian       98/05/28 17:09:22

  Modified:    src/main http_log.c
  Log:
  This was causing warnings in some compilation environments, and is the
  correct set of arguments for the function, even though pinfo never ends
  up getting used.  See error_log_child for a similar situation.
  
  Revision  Changes    Path
  1.60      +1 -1      apache-1.3/src/main/http_log.c
  
  Index: http_log.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/main/http_log.c,v
  retrieving revision 1.59
  retrieving revision 1.60
  diff -u -r1.59 -r1.60
  --- http_log.c        1998/05/28 22:09:50     1.59
  +++ http_log.c        1998/05/29 00:09:22     1.60
  @@ -620,7 +620,7 @@
   }
   
   #else
  -static int piped_log_child (void *cmd)
  +static int piped_log_child (void *cmd, child_info *pinfo)
   {
       /* Child process code for 'TransferLog "|..."';
        * may want a common framework for this, since I expect it will
  
  
  

Reply via email to