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 2004/07/01 01:27:05 UTC

cvs commit: modperl-2.0/t/filter/TestFilter both_str_con_add.pm

stas        2004/06/30 16:27:05

  Modified:    t/protocol/TestProtocol echo_bbs.pm echo_bbs2.pm
                        echo_filter.pm echo_timeout.pm
               t/filter/TestFilter both_str_con_add.pm
  Log:
  5.6.x doesn't like foo => 5 notation when in function arguments, use
  comma instead
  
  Revision  Changes    Path
  1.4       +1 -1      modperl-2.0/t/protocol/TestProtocol/echo_bbs.pm
  
  Index: echo_bbs.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/t/protocol/TestProtocol/echo_bbs.pm,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -u -r1.3 -r1.4
  --- echo_bbs.pm	30 Jun 2004 01:50:03 -0000	1.3
  +++ echo_bbs.pm	30 Jun 2004 23:27:05 -0000	1.4
  @@ -21,7 +21,7 @@
   
       # starting from Apache 2.0.49 several platforms require you to set
       # the socket to a blocking IO mode
  -    $c->client_socket->opt_set(APR::SO_NONBLOCK => 0);
  +    $c->client_socket->opt_set(APR::SO_NONBLOCK, 0);
   
       my $bb_in  = APR::Brigade->new($c->pool, $c->bucket_alloc);
       my $bb_out = APR::Brigade->new($c->pool, $c->bucket_alloc);
  
  
  
  1.4       +1 -1      modperl-2.0/t/protocol/TestProtocol/echo_bbs2.pm
  
  Index: echo_bbs2.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/t/protocol/TestProtocol/echo_bbs2.pm,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -u -r1.3 -r1.4
  --- echo_bbs2.pm	30 Jun 2004 01:50:03 -0000	1.3
  +++ echo_bbs2.pm	30 Jun 2004 23:27:05 -0000	1.4
  @@ -21,7 +21,7 @@
   
       # starting from Apache 2.0.49 several platforms require you to set
       # the socket to a blocking IO mode
  -    $c->client_socket->opt_set(APR::SO_NONBLOCK => 0);
  +    $c->client_socket->opt_set(APR::SO_NONBLOCK, 0);
   
       my $bb = APR::Brigade->new($c->pool, $c->bucket_alloc);
   
  
  
  
  1.16      +1 -1      modperl-2.0/t/protocol/TestProtocol/echo_filter.pm
  
  Index: echo_filter.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/t/protocol/TestProtocol/echo_filter.pm,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -u -r1.15 -r1.16
  --- echo_filter.pm	30 Jun 2004 01:50:03 -0000	1.15
  +++ echo_filter.pm	30 Jun 2004 23:27:05 -0000	1.16
  @@ -33,7 +33,7 @@
   
       # starting from Apache 2.0.49 several platforms require you to set
       # the socket to a blocking IO mode
  -    $c->client_socket->opt_set(APR::SO_NONBLOCK => 0);
  +    $c->client_socket->opt_set(APR::SO_NONBLOCK, 0);
   
       my $bb = APR::Brigade->new($c->pool, $c->bucket_alloc);
   
  
  
  
  1.6       +1 -1      modperl-2.0/t/protocol/TestProtocol/echo_timeout.pm
  
  Index: echo_timeout.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/t/protocol/TestProtocol/echo_timeout.pm,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -u -r1.5 -r1.6
  --- echo_timeout.pm	9 Jun 2004 14:46:22 -0000	1.5
  +++ echo_timeout.pm	30 Jun 2004 23:27:05 -0000	1.6
  @@ -22,7 +22,7 @@
   
       # starting from Apache 2.0.49 several platforms require you to set
       # the socket to a blocking IO mode
  -    $c->client_socket->opt_set(APR::SO_NONBLOCK => 0);
  +    $c->client_socket->opt_set(APR::SO_NONBLOCK, 0);
   
       # set timeout (20 sec) so later we can do error checking on
       # read/write timeouts
  
  
  
  1.17      +1 -1      modperl-2.0/t/filter/TestFilter/both_str_con_add.pm
  
  Index: both_str_con_add.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/t/filter/TestFilter/both_str_con_add.pm,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -u -r1.16 -r1.17
  --- both_str_con_add.pm	3 Jun 2004 08:22:21 -0000	1.16
  +++ both_str_con_add.pm	30 Jun 2004 23:27:05 -0000	1.17
  @@ -57,7 +57,7 @@
   
       # starting from Apache 2.0.49 several platforms require you to set
       # the socket to a blocking IO mode
  -    $c->client_socket->opt_set(APR::SO_NONBLOCK => 0);
  +    $c->client_socket->opt_set(APR::SO_NONBLOCK, 0);
   
       my $bb = APR::Brigade->new($c->pool, $c->bucket_alloc);