diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-06-12 18:24:42 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-06-12 18:24:42 +0000 |
commit | 6f98e2f23dda0973403d93fe46f0dab86308fba7 (patch) | |
tree | a74f669668da65f8d5178cd8d88320bc50df2999 /perl-install | |
parent | 01b7299cb135f99ab84fbec612f65d04832ab2d7 (diff) | |
download | drakx-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')
-rw-r--r-- | perl-install/authentication.pm | 8 |
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; |