diff options
author | Yuri Chornoivan <yurchor@ukr.net> | 2019-04-16 18:47:40 +0300 |
---|---|---|
committer | Yuri Chornoivan <yurchor@ukr.net> | 2019-04-16 18:47:40 +0300 |
commit | b88059ae766fef0af8cd8d5ed3e9e6ab566cb6b7 (patch) | |
tree | 53ae9ce898c663a896cc684ad97a9619cd078bb1 /perl-install/authentication.pm | |
parent | 1fca7921e9e38ebdeaf9ba46a4b752476628244c (diff) | |
download | drakx-b88059ae766fef0af8cd8d5ed3e9e6ab566cb6b7.tar drakx-b88059ae766fef0af8cd8d5ed3e9e6ab566cb6b7.tar.gz drakx-b88059ae766fef0af8cd8d5ed3e9e6ab566cb6b7.tar.bz2 drakx-b88059ae766fef0af8cd8d5ed3e9e6ab566cb6b7.tar.xz drakx-b88059ae766fef0af8cd8d5ed3e9e6ab566cb6b7.zip |
Fix typo found by Ardit Dani
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 6c9bea33d..55491edfb 100644 --- a/perl-install/authentication.pm +++ b/perl-install/authentication.pm @@ -165,7 +165,7 @@ my %level = ( {}, { label => N("LDAP Server"), val => \$authentication->{LDAP_server}, disabled => sub { $authentication->{nsskrb} eq "1" } }, { label => N("Base dn"), val => \$authentication->{LDAPDOMAIN} , disabled => sub { $authentication->{nsskrb} eq "1" } }, - { val => N("Fecth base Dn "), type => 'button' , clicked_may_quit => sub { $authentication->{LDAPDOMAIN} = fetch_dn($authentication->{LDAP_server}); 0 }, disabled => sub { $authentication->{nsskrb} eq "1" } }, + { val => N("Fetch base DN "), type => 'button' , clicked_may_quit => sub { $authentication->{LDAPDOMAIN} = fetch_dn($authentication->{LDAP_server}); 0 }, disabled => sub { $authentication->{nsskrb} eq "1" } }, {}, { text => N("Use encrypt connection with TLS "), val => \$authentication->{cafile}, type => 'bool',, disabled => sub { $authentication->{nsskrb} eq "1" } }, { val => N("Download CA Certificate "), type => 'button' , disabled => sub { !$authentication->{cafile} }, clicked_may_quit => sub { $authentication->{file} = add_cafile(); 0 } }, |