Update of /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest/Plugin
In directory usw-pr-cvs1:/tmp/cvs-serv31644/lib/HTTP/WebTest/Plugin
Modified Files:
Apache.pm
Log Message:
Minor fixes
Index: Apache.pm
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest/Plugin/Apache.pm,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** Apache.pm 21 Jun 2002 06:48:16 -0000 1.6
--- Apache.pm 2 Jul 2002 22:47:18 -0000 1.7
***************
*** 578,584 ****
or die "HTTP::WebTest: Can't kill Apache PID=$apache_pid: $!";
! while(1) {
my $pid = wait;
! last if $pid == -1 or $pid == $apache_pid;
}
}
--- 578,584 ----
or die "HTTP::WebTest: Can't kill Apache PID=$apache_pid: $!";
! {
my $pid = wait;
! redo unless $pid == -1 or $pid == $apache_pid;
}
}
|