You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by st...@apache.org on 2003/05/13 11:38:05 UTC

cvs commit: modperl-2.0/t/conf modperl_extra.pl

stas        2003/05/13 02:38:04

  Modified:    t/conf   modperl_extra.pl
  Log:
  import the APR::SUCCESS constant before using it
  
  Revision  Changes    Path
  1.28      +1 -1      modperl-2.0/t/conf/modperl_extra.pl
  
  Index: modperl_extra.pl
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/t/conf/modperl_extra.pl,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- modperl_extra.pl	13 May 2003 09:20:33 -0000	1.27
  +++ modperl_extra.pl	13 May 2003 09:38:03 -0000	1.28
  @@ -63,7 +63,7 @@
   use constant IOBUFSIZE => 8192;
   
   use Apache::Const -compile => qw(MODE_READBYTES);
  -use APR::Const    -compile => qw(BLOCK_READ);
  +use APR::Const    -compile => qw(SUCCESS BLOCK_READ);
   
   sub ModPerl::Test::read_post {
       my $r = shift;