diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-07-11 23:11:09 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-09-02 10:40:34 +1000 |
commit | 768475d5716faaf3e730404d44d68f7a3250d861 (patch) | |
tree | dff4d6214d1192eab360a39cb70146eb4615a398 | |
parent | 68c61dfa3fa925c63247bef83f10dfa2efa458e6 (diff) | |
download | samba-768475d5716faaf3e730404d44d68f7a3250d861.tar.gz samba-768475d5716faaf3e730404d44d68f7a3250d861.tar.bz2 samba-768475d5716faaf3e730404d44d68f7a3250d861.zip |
s4:dsdb Fix attribute being searched for in dereference against Fedora DS
The problem here is that these attributes are not mapped in the
simple_ldap_map, and they were changed a while back.
Andrew Bartlett
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/extended_dn_out.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/extended_dn_out.c b/source4/dsdb/samdb/ldb_modules/extended_dn_out.c index 92ce328eb2..07c0bff6d5 100644 --- a/source4/dsdb/samdb/ldb_modules/extended_dn_out.c +++ b/source4/dsdb/samdb/ldb_modules/extended_dn_out.c @@ -826,7 +826,7 @@ static int extended_dn_out_fds_init(struct ldb_module *module) { static const char *attrs[] = { "nsUniqueId", - "objectSID", + "sambaSID", NULL }; |