aboutsummaryrefslogtreecommitdiff
path: root/tests/runtests.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-xtests/runtests.pl8
1 files changed, 2 insertions, 6 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 47dfd0e28..467b70670 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -943,8 +943,6 @@ sub runftpserver {
my $ip=$HOSTIP;
my $nameext;
my $cmd;
- my $addr;
- my $addr_client;
if($ipv6) {
# if IPv6, use a different setup
@@ -968,20 +966,18 @@ sub runftpserver {
# start our server:
my $flag=$debugprotocol?"-v ":"";
$flag .= "-s \"$srcdir\" ";
+ my $addr;
if($id) {
$flag .="--id $id ";
}
if($ipv6) {
$flag .="--ipv6 ";
$addr = $HOST6IP;
- $addr_client = $CLIENT6IP;
} else {
$addr = $HOSTIP;
- $addr_client = $CLIENTIP;
}
- $cmd="$perl $srcdir/ftpserver.pl --pidfile $pidfile $flag --port $port --addr \"$addr\" --client \"$addr_client\"";
-
+ $cmd="$perl $srcdir/ftpserver.pl --pidfile $pidfile $flag --port $port --addr \"$addr\"";
my ($ftppid, $pid2) = startnew($cmd, $pidfile, 15, 0);
if($ftppid <= 0 || !kill(0, $ftppid)) {