dougm       01/10/07 13:22:02

  Modified:    src/modules/perl modperl_util.c modperl_util.h
  Log:
  s/bool/int/ (i dont think "bool" is portable)
  
  Revision  Changes    Path
  1.23      +1 -1      modperl-2.0/src/modules/perl/modperl_util.c
  
  Index: modperl_util.c
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/src/modules/perl/modperl_util.c,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- modperl_util.c    2001/10/07 20:20:53     1.22
  +++ modperl_util.c    2001/10/07 20:22:02     1.23
  @@ -426,7 +426,7 @@
   }
   
   SV *modperl_table_get_set(pTHX_ apr_table_t *table, char *key,
  -                          SV *sv_val, bool do_taint)
  +                          SV *sv_val, int do_taint)
   {
       SV *retval = &PL_sv_undef;
   
  
  
  
  1.22      +1 -1      modperl-2.0/src/modules/perl/modperl_util.h
  
  Index: modperl_util.h
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/src/modules/perl/modperl_util.h,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- modperl_util.h    2001/10/06 23:27:35     1.21
  +++ modperl_util.h    2001/10/07 20:22:02     1.22
  @@ -72,7 +72,7 @@
                                    char *key, SV *sv_val);
       
   SV *modperl_table_get_set(pTHX_ apr_table_t *table, char *key,
  -                          SV *sv_val, bool do_taint);
  +                          SV *sv_val, int do_taint);
   
   MP_INLINE int modperl_perl_module_loaded(pTHX_ const char *name);
   
  
  
  


Reply via email to