diff options
author | Jan Cholasta <jcholast@redhat.com> | 2013-02-04 11:48:58 +0100 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2013-03-01 16:59:47 +0100 |
commit | 5b2e0e2ba5808d6300de1cac743c96db0607121c (patch) | |
tree | 3165cccfbd01e5d76e74ae4df612cf64675fc046 /ipalib/plugins/automount.py | |
parent | a09c50671ecc53af63765afca13edd27ee598081 (diff) | |
download | freeipa.git-5b2e0e2ba5808d6300de1cac743c96db0607121c.tar.gz freeipa.git-5b2e0e2ba5808d6300de1cac743c96db0607121c.tar.xz freeipa.git-5b2e0e2ba5808d6300de1cac743c96db0607121c.zip |
Remove DN normalization from the baseldap plugin.
Diffstat (limited to 'ipalib/plugins/automount.py')
-rw-r--r-- | ipalib/plugins/automount.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ipalib/plugins/automount.py b/ipalib/plugins/automount.py index 417d6a31..22017fb5 100644 --- a/ipalib/plugins/automount.py +++ b/ipalib/plugins/automount.py @@ -715,9 +715,7 @@ class automountkey(LDAPObject): # First we look with the information given, then try to search for # the right entry. try: - (dn, entry_attrs) = ldap.get_entry( - dn, ['*'], normalize=self.normalize_dn - ) + (dn, entry_attrs) = ldap.get_entry(dn, ['*']) except errors.NotFound: if kwargs.get('automountinformation', False): sfilter = '(&(automountkey=%s)(automountinformation=%s))' % \ |