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

cvs commit: httpd-2.0/server log.c

jerenkrantz    02/04/18 01:27:28

  Modified:    .        CHANGES
               server   log.c
  Log:
  Fix 'control reaches end of non-void function' warning
  
  Submitted by:	Ben Collins-Sussman <su...@collab.net>
  Tweaked by:	    Justin Erenkrantz
  
  Revision  Changes    Path
  1.714     +3 -0      httpd-2.0/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/CHANGES,v
  retrieving revision 1.713
  retrieving revision 1.714
  diff -u -r1.713 -r1.714
  --- CHANGES	18 Apr 2002 08:24:22 -0000	1.713
  +++ CHANGES	18 Apr 2002 08:27:27 -0000	1.714
  @@ -1,5 +1,8 @@
   Changes with Apache 2.0.36
   
  +  *) Fix 'control reaches end of non-void function' warning in
  +     server/log.c.  [Ben Collins-Sussman <su...@collab.net>]
  +
     *) Perchild MPM is now correctly deemed as experimental and is now
        located in server/mpm/experimental.  [Justin Erenkrantz]
   
  
  
  
  1.117     +1 -1      httpd-2.0/server/log.c
  
  Index: log.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/log.c,v
  retrieving revision 1.116
  retrieving revision 1.117
  diff -u -r1.116 -r1.117
  --- log.c	17 Apr 2002 16:36:28 -0000	1.116
  +++ log.c	18 Apr 2002 08:27:28 -0000	1.117
  @@ -216,8 +216,8 @@
       if (rc != APR_SUCCESS) {
           ap_log_error(APLOG_MARK, APLOG_CRIT, rc, NULL,
                        "unable to replace stderr with error_log");
  -        return rc;
       }
  +    return rc;
   }
   
   static int log_child(apr_pool_t *p, const char *progname,