X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Ftdb2%2Ftdb.c;h=5e92af8c9666ac4c443af53638fb1c822229179c;hp=57b0777845e78805ff56298fd10517b4c8f351cb;hb=2bba2a856a6cfdb93085b701557850bc1da99587;hpb=acb26c9c3ee054c8b2141db25c9bd7be064e425c diff --git a/ccan/tdb2/tdb.c b/ccan/tdb2/tdb.c index 57b07778..5e92af8c 100644 --- a/ccan/tdb2/tdb.c +++ b/ccan/tdb2/tdb.c @@ -284,6 +284,10 @@ bool tdb_exists(struct tdb_context *tdb, TDB_DATA key) struct tdb_used_record rec; struct hash_info h; + if (tdb->flags & TDB_VERSION1) { + return tdb1_exists(tdb, key); + } + off = find_and_lock(tdb, key, F_RDLCK, &h, &rec, NULL); if (TDB_OFF_IS_ERR(off)) { tdb->last_error = off;