From: Aram Sargsyan Date: Tue, 30 May 2023 15:13:22 +0000 (+0000) Subject: Fix a bug in an utility script for the statschannel system test X-Git-Tag: v9.19.16~34^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aa7538fd38e6c13d7624f5b31d07825c7ec89c44;p=thirdparty%2Fbind9.git 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. --- diff --git a/bin/tests/system/statschannel/fetch.pl b/bin/tests/system/statschannel/fetch.pl index 7c57ca2937d..b09ed542a5d 100644 --- a/bin/tests/system/statschannel/fetch.pl +++ b/bin/tests/system/statschannel/fetch.pl @@ -28,7 +28,7 @@ my %options={}; getopts("s:p:", \%options); my $addr = "10.53.0.2"; -$addr = $options{a} if defined $options{a}; +$addr = $options{s} if defined $options{s}; my $path = 'xml/v3'; if (@ARGV >= 1) {