1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-24 21:49:29 +03:00

s4:samldb LDB module - remove "type" parameter of "samldb_fill_object"

It's a bit redundant given that we have the "type" variable on "ac".

Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org>
Autobuild-Date: Wed Oct  6 10:20:45 UTC 2010 on sn-devel-104
This commit is contained in:
Matthias Dieter Wallnöfer
2010-10-06 11:37:28 +02:00
committed by Matthias Dieter Wallnöfer
parent 2db1987f5a
commit 8e5f8d71f2

View File

@ -612,7 +612,7 @@ static bool check_rodc_critical_attribute(struct ldb_message *msg)
}
static int samldb_fill_object(struct samldb_ctx *ac, const char *type)
static int samldb_fill_object(struct samldb_ctx *ac)
{
struct ldb_context *ldb;
struct loadparm_context *lp_ctx;
@ -624,7 +624,6 @@ static int samldb_fill_object(struct samldb_ctx *ac, const char *type)
ldb = ldb_module_get_ctx(ac->module);
/* Add informations for the different account types */
ac->type = type;
if (strcmp(ac->type, "user") == 0) {
ret = samdb_find_or_add_attribute(ldb, ac->msg,
"userAccountControl", "546");
@ -1103,12 +1102,14 @@ static int samldb_add(struct ldb_module *module, struct ldb_request *req)
if (samdb_find_attribute(ldb, ac->msg,
"objectclass", "user") != NULL) {
return samldb_fill_object(ac, "user");
ac->type = "user";
return samldb_fill_object(ac);
}
if (samdb_find_attribute(ldb, ac->msg,
"objectclass", "group") != NULL) {
return samldb_fill_object(ac, "group");
ac->type = "group";
return samldb_fill_object(ac);
}
/* perhaps a foreignSecurityPrincipal? */
@ -1126,7 +1127,8 @@ static int samldb_add(struct ldb_module *module, struct ldb_request *req)
return ret;
}
return samldb_fill_object(ac, "classSchema");
ac->type = "classSchema";
return samldb_fill_object(ac);
}
if (samdb_find_attribute(ldb, ac->msg,
@ -1137,7 +1139,8 @@ static int samldb_add(struct ldb_module *module, struct ldb_request *req)
return ret;
}
return samldb_fill_object(ac, "attributeSchema");
ac->type = "attributeSchema";
return samldb_fill_object(ac);
}
talloc_free(ac);