From: mike Date: Fri, 7 Apr 2006 10:59:18 +0000 (+0000) Subject: eventstr() -> event_str() X-Git-Tag: cpan_1_22~222 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=ea3a42f05a2201e16bebb7b4128aa30802e33c80;hp=7fb41a692e39db8ae85613ffb3897a06438f32e7;p=ZOOM-Perl-moved-to-github.git eventstr() -> event_str() Pass \@a instead of [@a] --- diff --git a/samples/net-z3950-zoom/zoomtst3.pl b/samples/net-z3950-zoom/zoomtst3.pl index 934e329..b3a89d1 100644 --- a/samples/net-z3950-zoom/zoomtst3.pl +++ b/samples/net-z3950-zoom/zoomtst3.pl @@ -1,4 +1,4 @@ -# $Id: zoomtst3.pl,v 1.3 2006-04-07 07:49:11 mike Exp $ +# $Id: zoomtst3.pl,v 1.4 2006-04-07 10:59:18 mike Exp $ # # See ../README for a description of this program. # perl -I../../blib/lib -I../../blib/arch zoomtst3.pl [...] @@ -37,10 +37,10 @@ for (my $i = 0; $i < $n; $i++) { } # Network I/O. Pass number of connections and array of connections -while ((my $i = Net::Z3950::ZOOM::event([ @z ])) != 0) { +while ((my $i = Net::Z3950::ZOOM::event(\@z)) != 0) { my $ev = Net::Z3950::ZOOM::connection_last_event($z[$i-1]); print("connection ", $i-1, ": event $ev (", - Net::Z3950::ZOOM::eventstr($ev), ")\n"); + Net::Z3950::ZOOM::event_str($ev), ")\n"); ### It would be nice to display results as they come in. }