diff options
author | Daniel Stenberg <daniel@haxx.se> | 2010-08-25 15:10:40 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-08-25 15:10:40 +0200 |
commit | a049528e942b466bbac65f2adfa0078ef1ca51e7 (patch) | |
tree | 56db0fc94833f0fec5e2b90ba6705557a7aa6e8d | |
parent | 2fbbddbe855d551a5acb5d9c514efba18c924c6e (diff) |
runtests: fix uninitialized variable warning
-rwxr-xr-x | tests/runtests.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index 608875b6e..347adf7ef 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -676,7 +676,7 @@ sub verifyhttp { my ($proto, $ipvnum, $idnum, $ip, $port) = @_; my $server = servername_id($proto, $ipvnum, $idnum); my $pid = 0; - my $bonus; + my $bonus=""; my $verifyout = "$LOGDIR/". servername_canon($proto, $ipvnum, $idnum) .'_verify.out'; |