You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@locus.apache.org on 2000/08/23 20:06:12 UTC

cvs commit: apache-2.0/src/modules/standard mod_cgi.c

rbb         00/08/23 11:06:05

  Modified:    src/modules/standard mod_cgi.c
  Log:
  Fix a small typo and an incorrect type.
  Submitted by:	Victor J. Orlikowski <v....@gte.net>
  Reviewed by:	Ryan Bloom
  
  Revision  Changes    Path
  1.58      +2 -2      apache-2.0/src/modules/standard/mod_cgi.c
  
  Index: mod_cgi.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/standard/mod_cgi.c,v
  retrieving revision 1.57
  retrieving revision 1.58
  diff -u -r1.57 -r1.58
  --- mod_cgi.c	2000/08/23 00:01:57	1.57
  +++ mod_cgi.c	2000/08/23 18:06:00	1.58
  @@ -309,7 +309,7 @@
       apr_proc_t *procnew = apr_pcalloc(p, sizeof(*procnew));
       apr_status_t rc = APR_SUCCESS;
       apr_file_t *file = NULL;
  -    apr_file_t *sock = NULL;
  +    apr_socket_t *sock = NULL;
   #if defined(RLIMIT_CPU)  || defined(RLIMIT_NPROC) || \
       defined(RLIMIT_DATA) || defined(RLIMIT_VMEM) || defined (RLIMIT_AS)
       core_dir_config *conf;
  @@ -342,7 +342,7 @@
   	fprintf(dbg, "'%s'\n", env[i]);
   #endif
   
  -    /* Transumute ourselves into the script.
  +    /* Transmute ourselves into the script.
        * NB only ISINDEX scripts get decoded arguments.
        */
       if (((rc = apr_createprocattr_init(&procattr, p)) != APR_SUCCESS) ||