From 1d9ff7d3bc111f83f8ae45277c0507c4306c0c01 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 15 Jun 2012 09:51:21 +0200 Subject: dbwrap: dbwrap_trans_store_uint32->dbwrap_trans_store_uint32_bystring Signed-off-by: Michael Adam Autobuild-User(master): Michael Adam Autobuild-Date(master): Fri Jun 15 14:20:04 CEST 2012 on sn-devel-104 --- source3/passdb/account_pol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/passdb') diff --git a/source3/passdb/account_pol.c b/source3/passdb/account_pol.c index fa2252f1a7..c94df2961a 100644 --- a/source3/passdb/account_pol.c +++ b/source3/passdb/account_pol.c @@ -375,7 +375,7 @@ bool account_policy_set(enum pdb_policy_type type, uint32_t value) return False; } - status = dbwrap_trans_store_uint32(db, name, value); + status = dbwrap_trans_store_uint32_bystring(db, name, value); if (!NT_STATUS_IS_OK(status)) { DEBUG(1, ("store_uint32 failed for type %d (%s) on value " "%u: %s\n", type, name, value, nt_errstr(status))); -- cgit