1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

s4-dsdb: use dn_format shortcut to find DN format

this saves some string comparisons
This commit is contained in:
Andrew Tridgell 2011-08-05 11:28:12 +10:00 committed by Andrew Bartlett
parent d994ef2056
commit 8ce8107a5b
2 changed files with 4 additions and 4 deletions

View File

@ -76,7 +76,7 @@ static int extended_dn_out_dereference_setup_control(struct ldb_context *ldb, st
}
for (cur = schema->attributes; cur; cur = cur->next) {
if (dsdb_dn_oid_to_format(cur->syntax->ldap_oid) != DSDB_NORMAL_DN) {
if (cur->dn_format != DSDB_NORMAL_DN) {
continue;
}
dereference_control->dereference
@ -508,7 +508,7 @@ static int extended_callback(struct ldb_request *req, struct ldb_reply *ares,
}
/* Look to see if this attributeSyntax is a DN */
if (dsdb_dn_oid_to_format(attribute->syntax->ldap_oid) == DSDB_INVALID_DN) {
if (attribute->dn_format == DSDB_INVALID_DN) {
continue;
}

View File

@ -325,7 +325,7 @@ static int extended_dn_add(struct ldb_module *module, struct ldb_request *req)
}
/* We only setup an extended DN GUID on DN elements */
if (dsdb_dn_oid_to_format(schema_attr->syntax->ldap_oid) == DSDB_INVALID_DN) {
if (schema_attr->dn_format == DSDB_INVALID_DN) {
continue;
}
@ -400,7 +400,7 @@ static int extended_dn_modify(struct ldb_module *module, struct ldb_request *req
}
/* We only setup an extended DN GUID on these particular DN objects */
if (dsdb_dn_oid_to_format(schema_attr->syntax->ldap_oid) == DSDB_INVALID_DN) {
if (schema_attr->dn_format == DSDB_INVALID_DN) {
continue;
}