don't use -i when checking for our own server

This commit is contained in:
Daniel Stenberg 2004-05-10 06:29:52 +00:00
parent fe065dc851
commit 135394f511
1 changed files with 1 additions and 1 deletions

View File

@ -372,7 +372,7 @@ sub runhttpserver {
my $verified;
for(1 .. 10) {
# verify that our server is up and running:
my $data=`$CURL --silent -i $HOSTIP:$HOSTPORT/verifiedserver 2>/dev/null`;
my $data=`$CURL --silent $HOSTIP:$HOSTPORT/verifiedserver 2>/dev/null`;
if ( $data =~ /WE ROOLZ: (\d+)/ ) {
$pid = 0+$1;