summaryrefslogtreecommitdiffstats
path: root/perl-install/authentication.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-07-29 13:50:48 +0000
committerThierry Vignaud <tv@mandriva.org>2008-07-29 13:50:48 +0000
commit582b8959da1c3966371d1a4fadb5603d2fe4b85f (patch)
tree1de26f1ecd3bdf8a329ece5e3d2a618cc5a14ff8 /perl-install/authentication.pm
parent21b4a160d397eaba627d58f3e511169d953f1d12 (diff)
downloaddrakx-582b8959da1c3966371d1a4fadb5603d2fe4b85f.tar
drakx-582b8959da1c3966371d1a4fadb5603d2fe4b85f.tar.gz
drakx-582b8959da1c3966371d1a4fadb5603d2fe4b85f.tar.bz2
drakx-582b8959da1c3966371d1a4fadb5603d2fe4b85f.tar.xz
drakx-582b8959da1c3966371d1a4fadb5603d2fe4b85f.zip
typo fixes (Wanderlei Antonio Cavassin)
Diffstat (limited to 'perl-install/authentication.pm')
-rw-r--r--perl-install/authentication.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/authentication.pm b/perl-install/authentication.pm
index 2ea188649..2ca92f4aa 100644
--- a/perl-install/authentication.pm
+++ b/perl-install/authentication.pm
@@ -100,7 +100,7 @@ sub ask_parameters {
{},
{ label => N("LDAP Server"), val => \$authentication->{LDAP_server} },
{ label => N("Base dn"), val => \$authentication->{LDAPDOMAIN} },
- { val => N("Fecth base Dn "), type => button , clicked_may_quit => sub { $authentication->{LDAPDOMAIN} = fetch_dn($authentication->{LDAP_server}); 0 } },
+ { val => N("Fetch base Dn "), type => button , clicked_may_quit => sub { $authentication->{LDAPDOMAIN} = fetch_dn($authentication->{LDAP_server}); 0 } },
{},
{ text => N("Use encrypt connection with TLS "), val => \$authentication->{cafile}, type => 'bool' },
{ val => N("Download CA Certificate "), type => button , disabled => sub { !$authentication->{cafile} }, clicked_may_quit => sub { $authentication->{file} = add_cafile(); 0 } },
@@ -115,7 +115,7 @@ sub ask_parameters {
{ text => N(" "), advanced => 1 },
{ label => N("Password base"), val => \$authentication->{nss_pwd}, disabled => sub { !$authentication->{nssgrp} }, advanced => 1 },
{ label => N("Group base"), val => \$authentication->{nss_grp}, disabled => sub { !$authentication->{nssgrp} }, advanced => 1 },
- { label => N("Sahdow base"), val => \$authentication->{nss_shadow}, disabled => sub { !$authentication->{nssgrp} }, advanced => 1 },
+ { label => N("Shadow base"), val => \$authentication->{nss_shadow}, disabled => sub { !$authentication->{nssgrp} }, advanced => 1 },
{ text => N(" "), advanced => 1 },
]) or return;
} elsif ($kind eq 'KRB5') {