stas        2002/06/21 10:37:38

  Modified:    xs/APR/PerlIO apr_perlio.c
  Log:
  adjust for PerlIO bleedperl changes
  
  Revision  Changes    Path
  1.18      +3 -2      modperl-2.0/xs/APR/PerlIO/apr_perlio.c
  
  Index: apr_perlio.c
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/xs/APR/PerlIO/apr_perlio.c,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- apr_perlio.c      21 Jun 2002 15:53:40 -0000      1.17
  +++ apr_perlio.c      21 Jun 2002 17:37:38 -0000      1.18
  @@ -28,9 +28,9 @@
       apr_pool_t *pool;
   } PerlIOAPR;
   
  -static IV PerlIOAPR_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg)
  +static IV PerlIOAPR_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, PerlIO_funcs 
*tab)
   {
  -    IV code = PerlIOBase_pushed(aTHX_ f, mode, arg);
  +    IV code = PerlIOBase_pushed(aTHX_ f, mode, arg, tab);
       if (*PerlIONext(f)) {
           /* XXX: not sure if we can do anything here, but see
            * PerlIOUnix_pushed for things that it does
  @@ -366,6 +366,7 @@
   }
   
   static PerlIO_funcs PerlIO_APR = {
  +    sizeof(PerlIO_funcs),
       "APR",
       sizeof(PerlIOAPR),
       PERLIO_K_MULTIARG,
  
  
  


Reply via email to