summaryrefslogtreecommitdiff
path: root/source4/dsdb/schema/schema_set.c
diff options
context:
space:
mode:
authorMatthieu Patou <mat@matws.net>2012-04-15 14:50:20 -0700
committerMichael Adam <obnox@samba.org>2012-04-18 00:06:59 +0200
commit167c6eb61ee6211a63ffd98f9b86fa300472ea96 (patch)
treec87d5b01a447480fe9dee88c6a4ee3a3d06d5e5a /source4/dsdb/schema/schema_set.c
parent6ccaf279da949e945a09e90d3be8ec5b74128369 (diff)
downloadsamba-167c6eb61ee6211a63ffd98f9b86fa300472ea96.tar.gz
samba-167c6eb61ee6211a63ffd98f9b86fa300472ea96.tar.bz2
samba-167c6eb61ee6211a63ffd98f9b86fa300472ea96.zip
s4-schema: rename dsdb_attribute_from_ldb to dsdb_set_attribute_from_ldb and dsdb_class_from_ldb to dsdb_set_class_from_ldb
Diffstat (limited to 'source4/dsdb/schema/schema_set.c')
-rw-r--r--source4/dsdb/schema/schema_set.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/dsdb/schema/schema_set.c b/source4/dsdb/schema/schema_set.c
index 4142842eee..8a4361058b 100644
--- a/source4/dsdb/schema/schema_set.c
+++ b/source4/dsdb/schema/schema_set.c
@@ -667,10 +667,10 @@ WERROR dsdb_schema_set_el_from_ldb_msg(struct ldb_context *ldb, struct dsdb_sche
{
if (samdb_find_attribute(ldb, msg,
"objectclass", "attributeSchema") != NULL) {
- return dsdb_attribute_from_ldb(ldb, schema, msg);
+ return dsdb_set_attribute_from_ldb(ldb, schema, msg);
} else if (samdb_find_attribute(ldb, msg,
"objectclass", "classSchema") != NULL) {
- return dsdb_class_from_ldb(schema, msg);
+ return dsdb_set_class_from_ldb(schema, msg);
}
/* Don't fail on things not classes or attributes */