You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Alexei Kosut <ak...@hyperreal.com> on 1996/06/27 00:52:12 UTC

cvs commit: apache/src CHANGES http_main.c

akosut      96/06/26 15:52:11

  Modified:    src       CHANGES http_main.c
  Log:
  Fix inetd servers' handling of CGI and others that call
  cleanup_for_exec().
  
  Revision  Changes    Path
  1.35      +2 -1      apache/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache/src/CHANGES,v
  retrieving revision 1.34
  retrieving revision 1.35
  diff -C3 -r1.34 -r1.35
  *** CHANGES	1996/06/22 13:32:23	1.34
  --- CHANGES	1996/06/26 22:52:09	1.35
  ***************
  *** 1,7 ****
      *) Allow ScanHTMLTitles to work with lowercase <title> tags. [Alexei Kosut]
    
      *) Bugs which were fixed:
  ! 	a) yet more mod_proxy bugs [Ben Laurie]
    
    Changes with Apache 1.1b4:
    
  --- 1,8 ----
      *) Allow ScanHTMLTitles to work with lowercase <title> tags. [Alexei Kosut]
    
      *) Bugs which were fixed:
  !         a) yet more mod_proxy bugs [Ben Laurie]
  !         b) CGI works again with inetd [Alexei Kosut]
    
    Changes with Apache 1.1b4:
    
  
  
  
  1.42      +2 -1      apache/src/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_main.c,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -C3 -r1.41 -r1.42
  *** http_main.c	1996/06/26 10:46:36	1.41
  --- http_main.c	1996/06/26 22:52:10	1.42
  ***************
  *** 1550,1556 ****
    	}
    	server_conf->port =ntohs(((struct sockaddr_in *)&sa_server)->sin_port);
    	cio = bcreate(ptrans, B_RDWR);
  ! 	bpushfd(cio, fileno(stdin), fileno(stdout));
    	conn = new_connection (ptrans, server_conf, cio,
    			       (struct sockaddr_in *)&sa_client,
    			       (struct sockaddr_in *)&sa_server,-1);
  --- 1550,1557 ----
    	}
    	server_conf->port =ntohs(((struct sockaddr_in *)&sa_server)->sin_port);
    	cio = bcreate(ptrans, B_RDWR);
  ! 	cio->fd = fileno(stdout);
  ! 	cio->fd_in = fileno(stdin);
    	conn = new_connection (ptrans, server_conf, cio,
    			       (struct sockaddr_in *)&sa_client,
    			       (struct sockaddr_in *)&sa_server,-1);