From 8f94ecbb90f3efedc3e379853dd71369d53cb1f7 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 15 Jun 2012 09:09:57 +0200 Subject: dbwrap: dbwrap_store_uint32->dbwrap_store_uint32_bystring Signed-off-by: Michael Adam --- source3/torture/test_idmap_tdb_common.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source3/torture') diff --git a/source3/torture/test_idmap_tdb_common.c b/source3/torture/test_idmap_tdb_common.c index 7e7c5dd2b6..d08166017a 100644 --- a/source3/torture/test_idmap_tdb_common.c +++ b/source3/torture/test_idmap_tdb_common.c @@ -103,13 +103,15 @@ static bool open_db(struct idmap_tdb_common_context *ctx) return false; } - status = dbwrap_store_uint32(ctx->db, ctx->hwmkey_uid, LOW_ID); + status = dbwrap_store_uint32_bystring(ctx->db, ctx->hwmkey_uid, + LOW_ID); if(!NT_STATUS_IS_OK(status)) { dbwrap_transaction_cancel(ctx->db); return false; } - status = dbwrap_store_uint32(ctx->db, ctx->hwmkey_gid, LOW_ID); + status = dbwrap_store_uint32_bystring(ctx->db, ctx->hwmkey_gid, + LOW_ID); if(!NT_STATUS_IS_OK(status)) { dbwrap_transaction_cancel(ctx->db); return false; -- cgit