aboutsummaryrefslogtreecommitdiff
path: root/tests/runtests.pl
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2010-08-25 15:10:40 +0200
committerDaniel Stenberg <daniel@haxx.se>2010-08-25 15:10:40 +0200
commita049528e942b466bbac65f2adfa0078ef1ca51e7 (patch)
tree56db0fc94833f0fec5e2b90ba6705557a7aa6e8d /tests/runtests.pl
parent2fbbddbe855d551a5acb5d9c514efba18c924c6e (diff)
runtests: fix uninitialized variable warning
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-xtests/runtests.pl2
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';