From: Jim McDonough Date: Tue, 31 Aug 2004 12:06:37 +0000 (+0000) Subject: r2131: Fixup format string. The magic value format specifier was missing, so X-Git-Tag: samba-4.0.0alpha6~801^2~11277 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a79469a27f48bf4353b8f918f96af7e2d7bf384a;p=thirdparty%2Fsamba.git r2131: Fixup format string. The magic value format specifier was missing, so the logged offset was really the magic value, and the true offset was never displayed. (This used to be commit 30da4e777191c557226d5615cee5a9e28b198a8b) --- diff --git a/source3/tdb/tdb.c b/source3/tdb/tdb.c index 9a059d459ef..ac159863bdc 100644 --- a/source3/tdb/tdb.c +++ b/source3/tdb/tdb.c @@ -476,7 +476,7 @@ static int rec_free_read(TDB_CONTEXT *tdb, tdb_off off, struct list_struct *rec) if (rec->magic == TDB_MAGIC) { /* this happens when a app is showdown while deleting a record - we should not completely fail when this happens */ - TDB_LOG((tdb, 0,"rec_free_read non-free magic at offset=%d - fixing\n", + TDB_LOG((tdb, 0,"rec_free_read non-free magic 0x%x at offset=%d - fixing\n", rec->magic, off)); rec->magic = TDB_FREE_MAGIC; if (tdb_write(tdb, off, rec, sizeof(*rec)) == -1)