From: Rusty Russell Date: Thu, 17 Mar 2011 11:42:21 +0000 (+1030) Subject: tdb2: implement tdb_exists and tdb_parse_record X-Git-Url: http://git.ozlabs.org/?a=commitdiff_plain;h=a97da100b00206544c7a68593b64a49f2b854f7e;hp=a97da100b00206544c7a68593b64a49f2b854f7e;p=ccan tdb2: implement tdb_exists and tdb_parse_record These are the same as the TDB1 functions; but note that there is no reliable way to tell if tdb_exists() fails due to an error. This simplifies the API, but means you have to use tdb_fetch() if you really care. ---