You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ma...@hyperreal.org on 1999/10/08 00:23:58 UTC

cvs commit: apache-2.0/src/modules/mpm/prefork prefork.c

manoj       99/10/07 15:23:57

  Modified:    src/modules/mpm/prefork prefork.c
  Log:
  Make prefork's setup_listeners looks like the others'.
  
  Revision  Changes    Path
  1.40      +2 -2      apache-2.0/src/modules/mpm/prefork/prefork.c
  
  Index: prefork.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/mpm/prefork/prefork.c,v
  retrieving revision 1.39
  retrieving revision 1.40
  diff -u -d -u -r1.39 -r1.40
  --- prefork.c	1999/10/07 20:48:18	1.39
  +++ prefork.c	1999/10/07 22:23:54	1.40
  @@ -2530,7 +2530,7 @@
   }
   
   
  -static int setup_listeners(ap_context_t *p, server_rec *s)
  +static int setup_listeners(server_rec *s)
   {
       ap_listen_rec *lr;
       int sockdes;
  @@ -2568,7 +2568,7 @@
    
       ap_log_pid(pconf, ap_pid_fname);
   
  -    if (setup_listeners(pconf, s)) {
  +    if (setup_listeners(s)) {
   	/* XXX: hey, what's the right way for the mpm to indicate a fatal error? */
   	return 1;
       }