You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ia...@apache.org on 2002/08/19 22:40:09 UTC

cvs commit: httpd-2.0/server config.c

ianh        2002/08/19 13:40:08

  Modified:    .        CHANGES
               server   config.c
  Log:
  Make module loading error messages more informative
  Bug #11213
  Obtained from: Ian Darwin <ia...@darwinsys.com>
  
  Reviewed by:   Ian Holsman
  
  Revision  Changes    Path
  1.889     +3 -0      httpd-2.0/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/CHANGES,v
  retrieving revision 1.888
  retrieving revision 1.889
  diff -u -r1.888 -r1.889
  --- CHANGES	18 Aug 2002 21:01:05 -0000	1.888
  +++ CHANGES	19 Aug 2002 20:40:08 -0000	1.889
  @@ -1,5 +1,8 @@
   Changes with Apache 2.0.41
   
  +  *) Bug #11213.. make module loading error messages more informative 
  +     [Ian Darwin <Ia...@darwinsys.com>]
  +
     *) thread safety & proxy-ftp [Alexey Panchenko alexey@liwest.ru, Ian Holsman]
   
     *) mod_disk_cache works much better. This module should still
  
  
  
  1.155     +3 -1      httpd-2.0/server/config.c
  
  Index: config.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/config.c,v
  retrieving revision 1.154
  retrieving revision 1.155
  diff -u -r1.154 -r1.155
  --- config.c	6 Jul 2002 20:04:38 -0000	1.154
  +++ config.c	19 Aug 2002 20:40:08 -0000	1.155
  @@ -451,7 +451,9 @@
       if (m->version != MODULE_MAGIC_NUMBER_MAJOR) {
           ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
                        "%s: module \"%s\" is not compatible with this "
  -                     "version of Apache.", ap_server_argv0, m->name);
  +                     "version of Apache (found %d, need %d).",
  +                     ap_server_argv0, m->name, m->version,
  +                     MODULE_MAGIC_NUMBER_MAJOR);
           ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
                        "Please contact the vendor for the correct version.");
           exit(1);