2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

Fix a bug in an utility script for the statschannel system test

Because of a typo, the fetch.pl script tries to extract the server
address from the input parameter 'a' instead of 's'. Fix the typo.
This commit is contained in:
Aram Sargsyan
2023-05-30 15:13:22 +00:00
committed by Arаm Sаrgsyаn
parent 5b5d5f9f22
commit aa7538fd38

View File

@@ -28,7 +28,7 @@ my %options={};
getopts("s:p:", \%options); getopts("s:p:", \%options);
my $addr = "10.53.0.2"; my $addr = "10.53.0.2";
$addr = $options{a} if defined $options{a}; $addr = $options{s} if defined $options{s};
my $path = 'xml/v3'; my $path = 'xml/v3';
if (@ARGV >= 1) { if (@ARGV >= 1) {