diff options
author | Andrew Bartlett <abartlet@samba.org> | 2008-01-18 13:27:05 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2008-01-18 13:27:05 +1100 |
commit | f106e67599a02426d5eaf87e9d76bec486427add (patch) | |
tree | c7178d1b6e76abe89a5625470a9914eced37ffda /source4/dsdb | |
parent | 064eb82870596e72373c290dfaf0e6b8289303de (diff) | |
download | samba-f106e67599a02426d5eaf87e9d76bec486427add.tar.gz samba-f106e67599a02426d5eaf87e9d76bec486427add.tar.bz2 samba-f106e67599a02426d5eaf87e9d76bec486427add.zip |
Search for memberOf when clients ask for a wildcard against OpenLDAP
The memberOf module in OpenLDAP make this attribute operational, so we
need to add it here or clients won't get it when using *.
Andrew Bartlett
(This used to be commit 35148fd51f22d81fe9f590b7d6f13285c35656a7)
Diffstat (limited to 'source4/dsdb')
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/simple_ldap_map.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/simple_ldap_map.c b/source4/dsdb/samdb/ldb_modules/simple_ldap_map.c index 6e66d0783a..acf2fd622c 100644 --- a/source4/dsdb/samdb/ldb_modules/simple_ldap_map.c +++ b/source4/dsdb/samdb/ldb_modules/simple_ldap_map.c @@ -448,6 +448,7 @@ static const char * const entryuuid_wildcard_attributes[] = { "whenChanged", "usnCreated", "usnChanged", + "memberOf", NULL }; |