summaryrefslogtreecommitdiff
path: root/lib/dbwrap
diff options
context:
space:
mode:
authorTimur I. Bakeyev <timur@iXsystems.com>2018-05-13 12:18:21 +0800
committerRalph Boehme <slow@samba.org>2018-05-16 21:29:24 +0200
commit010cddae6c46d6ece67b80d4f6697a793f9b5350 (patch)
tree51f6315cf4d700f169d09e722b21a6c707b9a093 /lib/dbwrap
parentd3cbcbd5c0b22ce8ef368f2278fa4421c91f7502 (diff)
downloadsamba-010cddae6c46d6ece67b80d4f6697a793f9b5350.tar.gz
Convert affected by previous commit lines from DEBUG(10,..) to DBG_DEBUG().
Signed-off-by: Timur I. Bakeyev <timur@iXsystems.com> Reviewed-by: Ralph Boehme <slow@samba.org> Reviewed-by: Martin Schwenke <martin@meltin.net> Autobuild-User(master): Ralph Böhme <slow@samba.org> Autobuild-Date(master): Wed May 16 21:29:24 CEST 2018 on sn-devel-144
Diffstat (limited to 'lib/dbwrap')
-rw-r--r--lib/dbwrap/dbwrap_tdb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dbwrap/dbwrap_tdb.c b/lib/dbwrap/dbwrap_tdb.c
index 28e09d31963..f59764535a2 100644
--- a/lib/dbwrap/dbwrap_tdb.c
+++ b/lib/dbwrap/dbwrap_tdb.c
@@ -58,7 +58,7 @@ static void db_tdb_log_key(const char *prefix, TDB_DATA key)
}
keystr = hex_encode_talloc(frame, (unsigned char *)(key.dptr),
len);
- DEBUG(10, ("%s key %s\n", prefix, keystr));
+ DBG_DEBUG("%s key %s\n", prefix, keystr);
TALLOC_FREE(frame);
}
@@ -142,7 +142,7 @@ static struct db_record *db_tdb_fetch_locked_internal(
state.result->storev = db_tdb_storev;
state.result->delete_rec = db_tdb_delete;
- DEBUG(10, ("Allocated locked data %p\n", state.result));
+ DBG_DEBUG("Allocated locked data %p\n", state.result);
return state.result;
}