From bb96139846c58b14057a0d5175afc30a16631e5e Mon Sep 17 00:00:00 2001 From: Amitay Isaacs Date: Mon, 18 Jun 2012 17:07:57 +1000 Subject: [PATCH] dbwrap: Rename dbwrap_fetch_uint32->dbwrap_fetch_uint32_bystring Signed-off-by: Michael Adam --- source3/winbindd/idmap_tdb2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/winbindd/idmap_tdb2.c b/source3/winbindd/idmap_tdb2.c index bd535c01416..3e1fb7ab849 100644 --- a/source3/winbindd/idmap_tdb2.c +++ b/source3/winbindd/idmap_tdb2.c @@ -67,7 +67,7 @@ static NTSTATUS idmap_tdb2_init_hwm(struct idmap_domain *dom) /* Create high water marks for group and user id */ - status = dbwrap_fetch_uint32(ctx->db, HWM_USER, &low_id); + status = dbwrap_fetch_uint32_bystring(ctx->db, HWM_USER, &low_id); if (!NT_STATUS_IS_OK(status) || (low_id < dom->low_id)) { status = dbwrap_trans_store_uint32(ctx->db, HWM_USER, dom->low_id); @@ -78,7 +78,7 @@ static NTSTATUS idmap_tdb2_init_hwm(struct idmap_domain *dom) } } - status = dbwrap_fetch_uint32(ctx->db, HWM_GROUP, &low_id); + status = dbwrap_fetch_uint32_bystring(ctx->db, HWM_GROUP, &low_id); if (!NT_STATUS_IS_OK(status) || (low_id < dom->low_id)) { status = dbwrap_trans_store_uint32(ctx->db, HWM_GROUP, dom->low_id); -- 2.11.4.GIT