randyk      2003/03/13 22:05:06

  Modified:    Apache   typemap
               src/modules/perl Apache.xs
  Log:
  Reviewed by:  stas
  declare bufsiz of type STRLEN to avoid warning, and add STRLEN to typmap
  
  Revision  Changes    Path
  1.11      +1 -0      modperl/Apache/typemap
  
  Index: typemap
  ===================================================================
  RCS file: /home/cvs/modperl/Apache/typemap,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- typemap   20 Aug 1999 08:34:42 -0000      1.10
  +++ typemap   14 Mar 2003 06:05:06 -0000      1.11
  @@ -15,6 +15,7 @@
   gid_t                        T_IV
   Apache::Scoreboard      O_HvRV
   Apache::URI          T_PTROBJ    
  +STRLEN                  T_IV
   
   # "perlobject.map"  Dean Roehrich, version 19960302
   #
  
  
  
  1.127     +2 -2      modperl/src/modules/perl/Apache.xs
  
  Index: Apache.xs
  ===================================================================
  RCS file: /home/cvs/modperl/src/modules/perl/Apache.xs,v
  retrieving revision 1.126
  retrieving revision 1.127
  diff -u -r1.126 -r1.127
  --- Apache.xs 20 Feb 2003 05:21:55 -0000      1.126
  +++ Apache.xs 14 Mar 2003 06:05:06 -0000      1.127
  @@ -985,7 +985,7 @@
   read_client_block(r, buffer, bufsiz)
       Apache   r
       SV    *buffer
  -    int      bufsiz
  +    STRLEN   bufsiz
   
       PREINIT:
       long nrd = 0, old_read_length;
  @@ -1037,7 +1037,7 @@
   get_client_block(r, buffer, bufsiz)
       Apache   r
       SV    *buffer
  -    int      bufsiz
  +    STRLEN   bufsiz
   
       PREINIT:
       long nrd = 0;
  
  
  

Reply via email to