summaryrefslogtreecommitdiffstats
path: root/perl-install/authentication.pm
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.com>2008-06-12 18:24:42 +0000
committerOlivier Blin <oblin@mandriva.com>2008-06-12 18:24:42 +0000
commit6f98e2f23dda0973403d93fe46f0dab86308fba7 (patch)
treea74f669668da65f8d5178cd8d88320bc50df2999 /perl-install/authentication.pm
parent01b7299cb135f99ab84fbec612f65d04832ab2d7 (diff)
downloaddrakx-6f98e2f23dda0973403d93fe46f0dab86308fba7.tar
drakx-6f98e2f23dda0973403d93fe46f0dab86308fba7.tar.gz
drakx-6f98e2f23dda0973403d93fe46f0dab86308fba7.tar.bz2
drakx-6f98e2f23dda0973403d93fe46f0dab86308fba7.tar.xz
drakx-6f98e2f23dda0973403d93fe46f0dab86308fba7.zip
remove unneeded semi-colons
Diffstat (limited to 'perl-install/authentication.pm')
-rw-r--r--perl-install/authentication.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/authentication.pm b/perl-install/authentication.pm
index eb534c4da..b88d3231b 100644
--- a/perl-install/authentication.pm
+++ b/perl-install/authentication.pm
@@ -930,13 +930,13 @@ sub configure_nss_ldap {
nss_base_passwd => $authentication->{LDAPDOMAIN} . "?sub",
nss_base_group => $authentication->{LDAPDOMAIN} . "?sub",
);
- };
+ }
if ($authentication->{anonymous} eq '1') {
update_ldap_conf(
binddn => $authentication->{LDAP_binddn},
bindpw => $authentication->{LDAP_bindpwd},
);
- };
+ }
if ($authentication->{cafile} eq '1') {
update_ldap_conf(
@@ -944,6 +944,6 @@ sub configure_nss_ldap {
tls_checkpeer => "yes",
tls_cacertfile => $authentication->{file},
);
- };
- };
+ }
+ }
1;