From 9bc57e19e61ca89c349c28dda727d7e181dcc6e2 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Thu, 14 Oct 2010 21:54:51 +0200 Subject: s4:dsdb - remove "samdb_msg_add_value" This can be substituted by "ldb_msg_add_value". Signed-off-by: Andrew Bartlett Autobuild-User: Andrew Bartlett Autobuild-Date: Fri Oct 15 00:21:53 UTC 2010 on sn-devel-104 --- source4/dsdb/common/util.c | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'source4/dsdb') diff --git a/source4/dsdb/common/util.c b/source4/dsdb/common/util.c index 1b732c2a33..18a8669f29 100644 --- a/source4/dsdb/common/util.c +++ b/source4/dsdb/common/util.c @@ -1026,14 +1026,6 @@ int samdb_msg_add_parameters(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, s val.data = (uint8_t *)parameters->array; return ldb_msg_add_value(msg, attr_name, &val, NULL); } -/* - add a general value element to a message -*/ -int samdb_msg_add_value(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg, - const char *attr_name, const struct ldb_val *val) -{ - return ldb_msg_add_value(msg, attr_name, val, NULL); -} /* sets a general value element to a message @@ -2094,8 +2086,8 @@ NTSTATUS samdb_set_password(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, if ((new_password != NULL) && ((lmNewHash == NULL) && (ntNewHash == NULL))) { /* we have the password as plaintext UTF16 */ - CHECK_RET(samdb_msg_add_value(ldb, mem_ctx, msg, - "clearTextPassword", new_password)); + CHECK_RET(ldb_msg_add_value(msg, "clearTextPassword", + new_password, NULL)); el = ldb_msg_find_element(msg, "clearTextPassword"); el->flags = LDB_FLAG_MOD_REPLACE; } else if ((new_password == NULL) -- cgit