diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-07-05 09:34:21 -0500 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2011-07-05 16:19:10 -0400 |
commit | 6083df1b02f545b92e8d8fd8c767f7bbd0ca4b10 (patch) | |
tree | a8773cda52d0b86e07ed7afec50780fb638953ef /ipalib/plugins/baseldap.py | |
parent | cd237e5f54d5ceb75097f42c6968933ac28cdc8e (diff) | |
download | freeipa-6083df1b02f545b92e8d8fd8c767f7bbd0ca4b10.tar.gz freeipa-6083df1b02f545b92e8d8fd8c767f7bbd0ca4b10.tar.xz freeipa-6083df1b02f545b92e8d8fd8c767f7bbd0ca4b10.zip |
Fixed object_name usage.
The object_name attribute was used as both an identifier and a
label which sometimes require different values (e.g. hbacrule
vs. HBAC rule). The code that uses object_name as an identifier
has been changed to use the 'name' attribute instead. The values
of the object_name attribute have been fixed to become proper
labels.
Ticket #1217
Diffstat (limited to 'ipalib/plugins/baseldap.py')
-rw-r--r-- | ipalib/plugins/baseldap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugins/baseldap.py b/ipalib/plugins/baseldap.py index 2e9991317..3465c3746 100644 --- a/ipalib/plugins/baseldap.py +++ b/ipalib/plugins/baseldap.py @@ -348,7 +348,7 @@ class LDAPObject(Object): for ldap_obj_name in self.attribute_members[attr]: ldap_obj = self.api.Object[ldap_obj_name] if member.find(ldap_obj.container_dn) > 0: - new_attr = '%s_%s' % (attr, ldap_obj.object_name) + new_attr = '%s_%s' % (attr, ldap_obj.name) entry_attrs.setdefault(new_attr, []).append( ldap_obj.get_primary_key_from_dn(member) ) |