1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-10 12:58:35 +03:00

dbwrap_util: improve a debug message in dbwrap_delete_action()

Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
(cherry picked from commit d4408c495be851c684e7b4b5ff56e5eb82f16c06)

BUG: https://bugzilla.samba.org/show_bug.cgi?id=11779
This commit is contained in:
Michael Adam 2016-02-25 16:02:36 +01:00 committed by Karolin Seeger
parent b882ed1abe
commit a5a7947edf

View File

@ -412,7 +412,8 @@ static NTSTATUS dbwrap_delete_action(struct db_context * db, void *private_data)
status = dbwrap_record_delete(rec);
if (!NT_STATUS_IS_OK(status)) {
DEBUG(5, ("delete_rec returned %s\n", nt_errstr(status)));
DBG_INFO("dbwrap_record_delete returned %s\n",
nt_errstr(status));
}
talloc_free(rec);