stas 2003/11/06 03:35:08
Modified: src/modules/perl modperl_io_apache.c Log: untabify Revision Changes Path 1.10 +5 -5 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.9 retrieving revision 1.10 diff -u -u -r1.9 -r1.10 --- modperl_io_apache.c 6 Nov 2003 11:22:02 -0000 1.9 +++ modperl_io_apache.c 6 Nov 2003 11:35:08 -0000 1.10 @@ -29,8 +29,8 @@ * filling the data in */ static PerlIO * PerlIOApache_open(pTHX_ PerlIO_funcs *self, PerlIO_list_t *layers, IV n, - const char *mode, int fd, int imode, int perm, - PerlIO *f, int narg, SV **args) + const char *mode, int fd, int imode, int perm, + PerlIO *f, int narg, SV **args) { if (!f) { f = PerlIO_allocate(aTHX); @@ -47,7 +47,7 @@ /* this callback is used by pushed() and binmode() to add the layer */ static IV PerlIOApache_pushed(pTHX_ PerlIO *f, const char *mode, SV *arg, - PerlIO_funcs *tab) + PerlIO_funcs *tab) { IV code; PerlIOApache *st = PerlIOSelf(f, PerlIOApache); @@ -108,7 +108,7 @@ if (!(PerlIOBase(f)->flags & PERLIO_F_CANREAD) || PerlIOBase(f)->flags & (PERLIO_F_EOF|PERLIO_F_ERROR)) { - return 0; + return 0; } total = modperl_request_read(aTHX_ r, (char*)vbuf, count); @@ -130,7 +130,7 @@ apr_status_t rv; if (!(PerlIOBase(f)->flags & PERLIO_F_CANWRITE)) { - return 0; + return 0; } MP_CHECK_WBUCKET_INIT("print");