summaryrefslogtreecommitdiff
path: root/source3/winbindd
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2013-09-04 13:11:28 +0200
committerMichael Adam <obnox@samba.org>2013-10-02 00:06:24 +0200
commit85a15cac4495d7be5155e8c0bd6a6c60bd3eee51 (patch)
tree1d45634303523c8161321df82a01eccd4b149d95 /source3/winbindd
parent266fddfe6a12d729c37b2cd28ee8095fa59b57a2 (diff)
downloadsamba-85a15cac4495d7be5155e8c0bd6a6c60bd3eee51.tar.gz
samba-85a15cac4495d7be5155e8c0bd6a6c60bd3eee51.tar.bz2
samba-85a15cac4495d7be5155e8c0bd6a6c60bd3eee51.zip
idmap_autorid: fix a debug message in idmap_autorid_addrange()
Signed-off-by: Michael Adam <obnox@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org>
Diffstat (limited to 'source3/winbindd')
-rw-r--r--source3/winbindd/idmap_autorid_tdb.c4
1 files changed, 2 insertions, 2 deletions
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;
}