martin      98/12/28 04:30:29

  Modified:    .        STATUS
               src/main http_config.c
  Log:
  Change reference to config file name from local "fname" to
  "parms.config_file->name" to allow modules to modify the name that's
  displayed on errors.
  
  PR: 3573
  Submitted by: Fabien Coelho <[EMAIL PROTECTED]>
  
  Revision  Changes    Path
  1.569     +1 -5      apache-1.3/STATUS
  
  Index: STATUS
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/STATUS,v
  retrieving revision 1.568
  retrieving revision 1.569
  diff -u -r1.568 -r1.569
  --- STATUS    1998/12/28 12:22:54     1.568
  +++ STATUS    1998/12/28 12:30:27     1.569
  @@ -1,5 +1,5 @@
     1.3 STATUS:
  -  Last modified at [$Date: 1998/12/28 12:22:54 $]
  +  Last modified at [$Date: 1998/12/28 12:30:27 $]
   
   Release:
   
  @@ -105,10 +105,6 @@
       * Lars' 'binbuild' patch
           Message-ID: <[EMAIL PROTECTED]>
           Status: Lars +1
  -
  -    * Fabien Coelho's errmsg patch for http_config.c
  -        Message-ID: PR#3573
  -        Status: Martin +1 (on concept)
   
       * Jim Patterson's patch to make mod_info work on Win32
           Message-ID: PR#1442
  
  
  
  1.138     +1 -1      apache-1.3/src/main/http_config.c
  
  Index: http_config.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/main/http_config.c,v
  retrieving revision 1.137
  retrieving revision 1.138
  diff -u -r1.137 -r1.138
  --- http_config.c     1998/12/12 05:26:03     1.137
  +++ http_config.c     1998/12/28 12:30:28     1.138
  @@ -1188,7 +1188,7 @@
   
       if (errmsg) {
        fprintf(stderr, "Syntax error on line %d of %s:\n",
  -             parms.config_file->line_number, fname);
  +             parms.config_file->line_number, parms.config_file->name);
        fprintf(stderr, "%s\n", errmsg);
        exit(1);
       }
  
  
  

Reply via email to