From 9140fca812063be69842a6c64030e32c65c9dff1 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Wed, 14 Sep 2011 07:56:13 +0930 Subject: tdb2: unify tdb1_chainlock et al. into tdb_chainlock Switch on the TDB_VERSION1 flag. Signed-off-by: Rusty Russell (Imported from CCAN commit ceb2f3eacbad917ee990afbc3dd800bfb0607887) --- lib/tdb2/tdb1_check.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/tdb2/tdb1_check.c') diff --git a/lib/tdb2/tdb1_check.c b/lib/tdb2/tdb1_check.c index 50e71d9783..c3c3c60f43 100644 --- a/lib/tdb2/tdb1_check.c +++ b/lib/tdb2/tdb1_check.c @@ -338,7 +338,7 @@ int tdb1_check(struct tdb_context *tdb, if (tdb->file->allrecord_lock.count != 0) { locked = false; } else { - if (tdb1_lockall_read(tdb) == -1) + if (tdb_lockall_read(tdb) != TDB_SUCCESS) return -1; locked = true; } @@ -455,7 +455,7 @@ int tdb1_check(struct tdb_context *tdb, free(hashes); if (locked) { - tdb1_unlockall_read(tdb); + tdb_unlockall_read(tdb); } return 0; @@ -463,7 +463,7 @@ free: free(hashes); unlock: if (locked) { - tdb1_unlockall_read(tdb); + tdb_unlockall_read(tdb); } return -1; } -- cgit