From 0eb281d8f210200025aecb478f818b659ad5b546 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Sun, 12 Sep 2010 12:29:21 +0200 Subject: s4:samldb LDB module - rename "check_SamAccountType" into "check_sAMAccountType" And a small cosmetic change. I like to have the real attribute names in the function denominations --- source4/dsdb/samdb/ldb_modules/samldb.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'source4') diff --git a/source4/dsdb/samdb/ldb_modules/samldb.c b/source4/dsdb/samdb/ldb_modules/samldb.c index 7b1e2b5642..f8122258f3 100644 --- a/source4/dsdb/samdb/ldb_modules/samldb.c +++ b/source4/dsdb/samdb/ldb_modules/samldb.c @@ -198,8 +198,9 @@ static int samldb_check_sAMAccountName(struct samldb_ctx *ac) return samldb_next_step(ac); } +/* sAMAccountType handling */ -static int samldb_check_samAccountType(struct samldb_ctx *ac) +static int samldb_check_sAMAccountType(struct samldb_ctx *ac) { struct ldb_context *ldb; unsigned int account_type; @@ -232,9 +233,7 @@ static int samldb_check_samAccountType(struct samldb_ctx *ac) return ret; } } - } else - if (strcmp("group", ac->type) == 0) { - + } else if (strcmp("group", ac->type) == 0) { group_type = samdb_result_uint(ac->msg, "groupType", 0); if (group_type == 0) { ldb_asprintf_errstring(ldb, @@ -952,7 +951,7 @@ static int samldb_fill_object(struct samldb_ctx *ac, const char *type) if (ret != LDB_SUCCESS) return ret; /* check account_type/group_type */ - ret = samldb_add_step(ac, samldb_check_samAccountType); + ret = samldb_add_step(ac, samldb_check_sAMAccountType); if (ret != LDB_SUCCESS) return ret; /* check if we have a valid primary group ID */ -- cgit