summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;