diff options
author | Andrew Bartlett <abartlet@samba.org> | 2005-09-01 23:24:16 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:36:22 -0500 |
commit | ca875491688f755637aece917147f149906f9a8f (patch) | |
tree | 06f81d51e380c9d4e369c5470862fef12c1b915b /source4/lib/ldb/common | |
parent | 2786f3d70419d4e1b4506c0350d11d9de16d86e7 (diff) | |
download | samba-ca875491688f755637aece917147f149906f9a8f.tar.gz samba-ca875491688f755637aece917147f149906f9a8f.tar.bz2 samba-ca875491688f755637aece917147f149906f9a8f.zip |
r9928: ncName is a DN, and needs to use DN matching rules.
Andrew Bartlett
(This used to be commit b89e7a7fcdf80f2cab581f138358b4324d15d6bc)
Diffstat (limited to 'source4/lib/ldb/common')
-rw-r--r-- | source4/lib/ldb/common/ldb_attributes.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/lib/ldb/common/ldb_attributes.c b/source4/lib/ldb/common/ldb_attributes.c index 3973fc515c..47b4b1788b 100644 --- a/source4/lib/ldb/common/ldb_attributes.c +++ b/source4/lib/ldb/common/ldb_attributes.c @@ -149,6 +149,7 @@ int ldb_setup_wellknown_attributes(struct ldb_context *ldb) const char *syntax; } wellknown[] = { { "dn", LDB_SYNTAX_DN }, + { "ncName", LDB_SYNTAX_DN }, { "distinguishedName", LDB_SYNTAX_DN }, { "cn", LDB_SYNTAX_DIRECTORY_STRING }, { "dc", LDB_SYNTAX_DIRECTORY_STRING }, |