dougm       01/10/07 15:07:15

  Modified:    src/modules/perl modperl_perl_global.c modperl_perl_global.h
  Log:
  wont be able to use a precomputed hash for modperl_modglobal_key_t's
  
  Revision  Changes    Path
  1.8       +1 -1      modperl-2.0/src/modules/perl/modperl_perl_global.c
  
  Index: modperl_perl_global.c
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/src/modules/perl/modperl_perl_global.c,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- modperl_perl_global.c     2001/10/07 22:04:07     1.7
  +++ modperl_perl_global.c     2001/10/07 22:07:15     1.8
  @@ -13,7 +13,7 @@
   /* XXX: PL_modglobal thingers might be useful elsewhere */
   
   #define MP_MODGLOBAL_ENT(key) \
  -{key, "ModPerl::" key, (sizeof("ModPerl::")-1)+(sizeof(key)-1), 0}
  +{key, "ModPerl::" key, (sizeof("ModPerl::")-1)+(sizeof(key)-1)}
   
   static modperl_modglobal_key_t MP_modglobal_keys[] = {
       MP_MODGLOBAL_ENT("END"),
  
  
  
  1.7       +0 -1      modperl-2.0/src/modules/perl/modperl_perl_global.h
  
  Index: modperl_perl_global.h
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/src/modules/perl/modperl_perl_global.h,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- modperl_perl_global.h     2001/10/07 22:04:07     1.6
  +++ modperl_perl_global.h     2001/10/07 22:07:15     1.7
  @@ -5,7 +5,6 @@
       const char *name;
       const char *val;
       I32 len;
  -    U32 hash;
   } modperl_modglobal_key_t;
   
   typedef enum {
  
  
  


Reply via email to