From 37ad03f91d28c39533ece09384a12e63603c3e8a Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 15 Jun 2012 09:18:17 +0200 Subject: dbwrap: dbwrap_change_uint32_atomic->dbwrap_change_uint32_atomic_bystring Signed-off-by: Michael Adam --- source3/winbindd/idmap_autorid.c | 2 +- source3/winbindd/idmap_tdb_common.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'source3') diff --git a/source3/winbindd/idmap_autorid.c b/source3/winbindd/idmap_autorid.c index a890914a47..26811a863c 100644 --- a/source3/winbindd/idmap_autorid.c +++ b/source3/winbindd/idmap_autorid.c @@ -94,7 +94,7 @@ static NTSTATUS idmap_autorid_get_domainrange_action(struct db_context *db, } /* increase the HWM */ - ret = dbwrap_change_uint32_atomic(db, HWM, &domainnum, 1); + ret = dbwrap_change_uint32_atomic_bystring(db, HWM, &domainnum, 1); if (!NT_STATUS_IS_OK(ret)) { DEBUG(1, ("Fatal error while fetching a new " "domain range value!\n")); diff --git a/source3/winbindd/idmap_tdb_common.c b/source3/winbindd/idmap_tdb_common.c index 1c2e3467b2..669caf520a 100644 --- a/source3/winbindd/idmap_tdb_common.c +++ b/source3/winbindd/idmap_tdb_common.c @@ -71,7 +71,7 @@ static NTSTATUS idmap_tdb_common_allocate_id_action(struct db_context *db, } /* fetch a new id and increment it */ - ret = dbwrap_change_uint32_atomic(db, state->hwmkey, &hwm, 1); + ret = dbwrap_change_uint32_atomic_bystring(db, state->hwmkey, &hwm, 1); if (!NT_STATUS_IS_OK(ret)) { DEBUG(1, ("Fatal error while fetching a new %s value\n!", state->hwmtype)); -- cgit