You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by gs...@apache.org on 2002/09/04 01:39:44 UTC

cvs commit: httpd-2.0/include ap_mmn.h

gstein      2002/09/03 16:39:43

  Modified:    include  ap_mmn.h
  Log:
  This bit me over the weekend. A module with old constants doesn't work
  well with a system looking for new...
  
  Note: we really should peg Apache against a specific APR release so
  that our ABI doesn't keep getting whacked due to APR(UTIL) changes.
  
  Revision  Changes    Path
  1.52      +2 -1      httpd-2.0/include/ap_mmn.h
  
  Index: ap_mmn.h
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/include/ap_mmn.h,v
  retrieving revision 1.51
  retrieving revision 1.52
  diff -u -r1.51 -r1.52
  --- ap_mmn.h	28 Jun 2002 08:40:23 -0000	1.51
  +++ ap_mmn.h	3 Sep 2002 23:39:43 -0000	1.52
  @@ -110,12 +110,13 @@
    * 20020612 (2.0.38-dev) Changed server_rec->[keep_alive_]timeout to apr time
    * 20020625 (2.0.40-dev) Changed conn_rec->keepalive to an enumeration
    * 20020628 (2.0.40-dev) Added filter_init to filter registration functions
  + * 20020903 (2.0.41-dev) APR's error constants changed
    */
   
   #define MODULE_MAGIC_COOKIE 0x41503230UL /* "AP20" */
   
   #ifndef MODULE_MAGIC_NUMBER_MAJOR
  -#define MODULE_MAGIC_NUMBER_MAJOR 20020628
  +#define MODULE_MAGIC_NUMBER_MAJOR 20020903
   #endif
   #define MODULE_MAGIC_NUMBER_MINOR 0                     /* 0...n */