You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Roy Fielding <fi...@hyperreal.com> on 1997/03/18 10:57:41 UTC

cvs commit: apache/src CHANGES http_config.c

fielding    97/03/18 01:57:41

  Modified:    src       CHANGES http_config.c
  Log:
  Fixed problem with vhost error log not being set prior to
  initializing virtual hosts.
  
  Submitted by: Dean Gaudet
  Reviewed by: Ken Coar, Roy Fielding
  
  Revision  Changes    Path
  1.201     +3 -0      apache/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache/src/CHANGES,v
  retrieving revision 1.200
  retrieving revision 1.201
  diff -C3 -r1.200 -r1.201
  *** CHANGES	1997/03/18 09:46:42	1.200
  --- CHANGES	1997/03/18 09:57:39	1.201
  ***************
  *** 1,5 ****
  --- 1,8 ----
    Changes with Apache 1.2b8
    
  +   *) Fixed problem with vhost error log not being set prior to
  +      initializing virtual hosts. [Dean Gaudet]
  + 
      *) Fixed infinite loop when a trailing slash is included after a type map
         file URL (extra path info). [Petr Lampa]
    
  
  
  
  1.45      +1 -0      apache/src/http_config.c
  
  Index: http_config.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_config.c,v
  retrieving revision 1.44
  retrieving revision 1.45
  diff -C3 -r1.44 -r1.45
  *** http_config.c	1997/03/11 06:04:40	1.44
  --- http_config.c	1997/03/18 09:57:40	1.45
  ***************
  *** 944,949 ****
  --- 944,950 ----
        s->keep_alive_timeout = 0;
        s->keep_alive = -1;
        s->keep_alive_max = -1;
  +     s->error_log = main_server->error_log;
        /* start the list of addreses */
        addrs = &s->addrs;
        while( hostname[0] ) {