diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2011-03-20 14:57:23 (GMT) |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2011-03-20 14:57:23 (GMT) |
commit | 429570902bb0f4dd6a16a2b3a4952d3b1a7c1129 (patch) | |
tree | c93db4b62ce49be8cb321ac422d905fb62637518 /lib | |
parent | 6640df17e23dc034ce60924cdcca762f3f555f41 (diff) | |
download | perl-Kolab-429570902bb0f4dd6a16a2b3a4952d3b1a7c1129.tar.gz |
Some more indent fixes
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Kolab/LDAP.pm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/Kolab/LDAP.pm b/lib/Kolab/LDAP.pm index 794e737..e6c2ae5 100644 --- a/lib/Kolab/LDAP.pm +++ b/lib/Kolab/LDAP.pm @@ -940,14 +940,14 @@ sub syncDomains # object my $dn = 'cn=calendar,cn=internal,' . $Kolab::config{'base_dn'}; $ldapmesg = $ldap->search( - base => 'cn=internal,' . $Kolab::config{'base_dn'}, - scope => 'one', - filter => '(&(objectClass=kolabInetOrgPerson)(cn=calendar))', - attrs => [ - 'objectClass', - 'uid', - ], - ); + base => 'cn=internal,' . $Kolab::config{'base_dn'}, + scope => 'one', + filter => '(&(objectClass=kolabInetOrgPerson)(cn=calendar))', + attrs => [ + 'objectClass', + 'uid', + ], + ); if ( UNIVERSAL::isa( $ldapmesg, 'Net::LDAP::Search') && $ldapmesg->count() > 0) { Kolab::log('L', "Identified old calendar user with DN `$dn'", KOLAB_DEBUG); |