diff options
Diffstat (limited to 'lib/tdb')
-rw-r--r-- | lib/tdb/common/check.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tdb/common/check.c b/lib/tdb/common/check.c index 3ac2eb5105..fd3c0a91f3 100644 --- a/lib/tdb/common/check.c +++ b/lib/tdb/common/check.c @@ -29,7 +29,7 @@ static bool tdb_check_header(struct tdb_context *tdb, tdb_off_t *recovery) { struct tdb_header hdr; - if (tdb->methods->tdb_read(tdb, 0, &hdr, sizeof(hdr), DOCONV()) == -1) + if (tdb->methods->tdb_read(tdb, 0, &hdr, sizeof(hdr), 0) == -1) return false; if (strcmp(hdr.magic_food, TDB_MAGIC_FOOD) != 0) goto corrupt; |