summaryrefslogtreecommitdiff
path: root/source4/utils/oLschema2ldif.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2008-08-18 10:16:45 +1000
committerAndrew Bartlett <abartlet@samba.org>2008-08-18 10:16:45 +1000
commit46c94dd8b28cbb6fca28f4884b65be034e135fbb (patch)
treeecb953d6d0669032641c971c564ca3d1bdd9832b /source4/utils/oLschema2ldif.c
parent613b8d398ed73be958e90a1d4c2b728d2139b3fb (diff)
downloadsamba-46c94dd8b28cbb6fca28f4884b65be034e135fbb.tar.gz
samba-46c94dd8b28cbb6fca28f4884b65be034e135fbb.tar.bz2
samba-46c94dd8b28cbb6fca28f4884b65be034e135fbb.zip
Merge the two attribute syntax tables.
This merges the table once found in the oLschema2ldif tool (and moved many times) with the table used for DRSUAPI. The OpenLDAP schema map has been updated, to ensure that despite a number of attributes being declared as OIDs, they are actually used as strings (as they are actually LDAP class/attribute names). Andrew Bartlett (This used to be commit 61f2958c84beeedcf369ccdc02afed0c8055b108)
Diffstat (limited to 'source4/utils/oLschema2ldif.c')
-rw-r--r--source4/utils/oLschema2ldif.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/utils/oLschema2ldif.c b/source4/utils/oLschema2ldif.c
index d045b084b5..6c4e6a9c80 100644
--- a/source4/utils/oLschema2ldif.c
+++ b/source4/utils/oLschema2ldif.c
@@ -433,12 +433,12 @@ static struct ldb_message *process_entry(TALLOC_CTX *mem_ctx, const char *entry)
case SCHEMA_SYNTAX:
{
- const struct dsdb_syntax_map *map =
+ const struct dsdb_syntax *map =
find_syntax_map_by_standard_oid(token->value);
if (!map) {
break;
}
- MSG_ADD_STRING("attributeSyntax", map->AD_OID);
+ MSG_ADD_STRING("attributeSyntax", map->attributeSyntax_oid);
break;
}
case SCHEMA_DESC: