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 08bad2cc7..0c86777aa 100644 --- a/perl-install/authentication.pm +++ b/perl-install/authentication.pm @@ -80,7 +80,7 @@ sub set { } elsif ($kind eq 'NIS') { $in->do_pkgs->install('ypbind'); my $domain = $netc->{NISDOMAIN}; - $domain || $val ne "broadcast" or die \N("Can't use broadcast with no NIS domain"); + $domain || $val ne "broadcast" or die N("Can't use broadcast with no NIS domain"); my $t = $domain ? "domain $domain" . ($val ne "broadcast" && " server") : "ypserver"; substInFile { $_ = "#~$_" unless /^#/; |