diff options
Diffstat (limited to 'perl-install/authentication.pm')
-rw-r--r-- | perl-install/authentication.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/authentication.pm b/perl-install/authentication.pm index ab249dc50..7c7157ce9 100644 --- a/perl-install/authentication.pm +++ b/perl-install/authentication.pm @@ -374,7 +374,7 @@ EOF } elsif ($kind eq 'NIS') { my $domain = $net->{network}{NISDOMAIN}; my $NIS_server = $authentication->{NIS_server}; - $domain || $NIS_server ne "broadcast" or die N("Can not use broadcast with no NIS domain"); + $domain || $NIS_server ne "broadcast" or die N("Cannot use broadcast with no NIS domain"); my $t = $domain ? ($NIS_server eq 'broadcast' ? "domain $domain broadcast" : |