diff options
author | David Boreham <dboreham@redhat.com> | 2005-05-17 23:07:12 +0000 |
---|---|---|
committer | David Boreham <dboreham@redhat.com> | 2005-05-17 23:07:12 +0000 |
commit | a5a7c6c10cd7206fcf585af9c5cf58dc3599438f (patch) | |
tree | 77a6c1fe4afc698d7828b198e1b0b881759aef69 | |
parent | 49e00bfc5c36852107cf427efdb5e51001e85b49 (diff) | |
download | ds-a5a7c6c10cd7206fcf585af9c5cf58dc3599438f.tar.gz ds-a5a7c6c10cd7206fcf585af9c5cf58dc3599438f.tar.xz ds-a5a7c6c10cd7206fcf585af9c5cf58dc3599438f.zip |
Fix for 158031: add default indices needed by Windows Sync
-rw-r--r-- | ldap/admin/src/create_instance.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ldap/admin/src/create_instance.c b/ldap/admin/src/create_instance.c index d341a23b..2bc8c621 100644 --- a/ldap/admin/src/create_instance.c +++ b/ldap/admin/src/create_instance.c @@ -4253,6 +4253,8 @@ ds_gen_index(FILE* f, char* belowdn) MKINDEX("sn", belowdn, 0, "pres", "eq", "sub"); MKINDEX("telephoneNumber", belowdn, 0, "pres", "eq", "sub"); MKINDEX("uid", belowdn, 0, "eq", NULL, NULL); + MKINDEX("ntUniqueId", belowdn, 0, "eq", NULL, NULL); + MKINDEX("ntUserDomainId", belowdn, 0, "eq", NULL, NULL); MKINDEX("uniquemember", belowdn, 0, "eq", NULL, NULL); } |