mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-28 20:41:18 -05: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.
(cherry picked from commit aa7538fd38)
This commit is contained in:
parent
7fc0400617
commit
3a807e554f
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue