You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2002/02/22 18:31:06 UTC

cvs commit: apache-1.3/src/main http_main.c

trawick     02/02/22 09:31:06

  Modified:    src      CHANGES
               src/main http_main.c
  Log:
  This patch changes a TPF-specific section of http_main.c to use the
  correct subpool when initially opening the error log.
  This makes TPF's ap_open_logs call the same as other platforms and
  prevents a possible SIGPIPE in standalone_main on TPF.
  
  Submitted by:	David McCreedy
  Reviewed by:	Jeff Trawick
  
  Revision  Changes    Path
  1.1776    +4 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1775
  retrieving revision 1.1776
  diff -u -r1.1775 -r1.1776
  --- CHANGES	21 Feb 2002 06:03:08 -0000	1.1775
  +++ CHANGES	22 Feb 2002 17:31:05 -0000	1.1776
  @@ -1,5 +1,9 @@
   Changes with Apache 1.3.24
   
  +  *) TPF: Use the correct subpool whening opening the error log.
  +     This prevents a possible SIGPIPE in standalone_main.
  +     [David McCreedy <Mc...@us.ibm.com>]
  +
     *) When proxy enabled a slow frontend client to read from an
        expensive backend server, it would wait until it had delivered
        the response to the slow frontend client completely before
  
  
  
  1.574     +1 -1      apache-1.3/src/main/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/main/http_main.c,v
  retrieving revision 1.573
  retrieving revision 1.574
  diff -u -r1.573 -r1.574
  --- http_main.c	25 Jan 2002 17:25:14 -0000	1.573
  +++ http_main.c	22 Feb 2002 17:31:06 -0000	1.574
  @@ -5406,7 +5406,7 @@
           memcpy(tpf_server_name, input_parms.parent.servname,
                  INETD_SERVNAME_LENGTH);
           tpf_server_name[INETD_SERVNAME_LENGTH + 1] = '\0';
  -        ap_open_logs(server_conf, pconf);
  +        ap_open_logs(server_conf, plog);
           ap_tpf_zinet_checks(ap_standalone, tpf_server_name, server_conf);
       }
       if (ap_standalone) {