randyk      2003/09/03 20:31:50

  Modified:    src/modules/perl modperl_io_apache.c
               xs/APR/PerlIO apr_perlio.c
  Log:
  Reviewed by:  stas
  Win32 needs PERLIO_K_RAW.
  
  Revision  Changes    Path
  1.4       +1 -1      modperl-2.0/src/modules/perl/modperl_io_apache.c
  
  Index: modperl_io_apache.c
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/src/modules/perl/modperl_io_apache.c,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- modperl_io_apache.c       21 Aug 2003 01:37:20 -0000      1.3
  +++ modperl_io_apache.c       4 Sep 2003 03:31:50 -0000       1.4
  @@ -187,7 +187,7 @@
       sizeof(PerlIO_funcs),
       "Apache",
       sizeof(PerlIOApache),
  -    PERLIO_K_MULTIARG,
  +    PERLIO_K_MULTIARG | PERLIO_K_RAW,
       PerlIOApache_pushed,
       PerlIOApache_popped,
       PerlIOApache_open,
  
  
  
  1.31      +1 -1      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.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- apr_perlio.c      28 Aug 2003 01:56:03 -0000      1.30
  +++ apr_perlio.c      4 Sep 2003 03:31:50 -0000       1.31
  @@ -399,7 +399,7 @@
       sizeof(PerlIO_funcs),
       "APR",
       sizeof(PerlIOAPR),
  -    PERLIO_K_MULTIARG,
  +    PERLIO_K_MULTIARG | PERLIO_K_RAW,
       PerlIOAPR_pushed,
       PerlIOBase_popped,
       PerlIOAPR_open,
  
  
  

Reply via email to