From 85a15cac4495d7be5155e8c0bd6a6c60bd3eee51 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 4 Sep 2013 13:11:28 +0200 Subject: idmap_autorid: fix a debug message in idmap_autorid_addrange() Signed-off-by: Michael Adam Reviewed-by: Volker Lendecke --- source3/winbindd/idmap_autorid_tdb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/winbindd') diff --git a/source3/winbindd/idmap_autorid_tdb.c b/source3/winbindd/idmap_autorid_tdb.c index a27f79a707..419d7553d0 100644 --- a/source3/winbindd/idmap_autorid_tdb.c +++ b/source3/winbindd/idmap_autorid_tdb.c @@ -175,8 +175,8 @@ static NTSTATUS idmap_autorid_addrange_action(struct db_context *db, /* increase the HWM */ ret = dbwrap_change_uint32_atomic_bystring(db, HWM, &hwm, increment); if (!NT_STATUS_IS_OK(ret)) { - DEBUG(1, ("Fatal error while fetching a new " - "domain range value!\n")); + DEBUG(1, ("Fatal error while incrementing the HWM value " + "in the database: %s\n", nt_errstr(ret))); goto error; } -- cgit