martin      98/12/22 16:14:11

  Modified:    src/main http_main.c
  Log:
  Fix the SHARED_CORE_BOOTSTRAP main routine. It would not compile
  after recent changes because the undefined variable
  ap_server_argv0 was referenced.
  
  Revision  Changes    Path
  1.413     +1 -1      apache-1.3/src/main/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/main/http_main.c,v
  retrieving revision 1.412
  retrieving revision 1.413
  diff -u -r1.412 -r1.413
  --- http_main.c       1998/12/17 15:09:31     1.412
  +++ http_main.c       1998/12/23 00:14:10     1.413
  @@ -6130,7 +6130,7 @@
       if (execve(prog, argv, envp) == -1) {
        fprintf(stderr, 
                "%s: Unable to exec Shared Core Executable Program `%s'\n",
  -             ap_server_argv0, prog);
  +             argv[0], prog);
        return 1;
       }
       else
  
  
  

Reply via email to