diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2011-09-14 07:59:13 +0930 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2011-09-14 07:59:13 +0930 |
commit | 8e14a3e06d42b0302868dc3911a2e607e42a51b3 (patch) | |
tree | ada1f4891472e6a4d3904327fb7f6bc0264f915c /lib/tdb2/tdb1.h | |
parent | 5d9dd8d541a761e0af2c8d50ee55485f2cef3e01 (diff) | |
download | samba-8e14a3e06d42b0302868dc3911a2e607e42a51b3.tar.gz samba-8e14a3e06d42b0302868dc3911a2e607e42a51b3.tar.bz2 samba-8e14a3e06d42b0302868dc3911a2e607e42a51b3.zip |
tdb2: unify tdb1_check and tdb1_summary into tdb_check and tdb_summary.
Switch on the TDB_VERSION1 flag. Also, change tdb1_check's checkfn argument
to return an error code (and set tdb->last_error accordingly).
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
(Imported from CCAN commit ef92843f2c74ab9d4fa7f167a2182e5e8955df91)
Diffstat (limited to 'lib/tdb2/tdb1.h')
-rw-r--r-- | lib/tdb2/tdb1.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/tdb2/tdb1.h b/lib/tdb2/tdb1.h index b565b11408..2855d0c1b0 100644 --- a/lib/tdb2/tdb1.h +++ b/lib/tdb2/tdb1.h @@ -48,19 +48,12 @@ void tdb1_increment_seqnum_nonblock(struct tdb_context *tdb); uint64_t tdb1_incompatible_hash(const void *key, size_t len, uint64_t seed, void *); -int tdb1_check(struct tdb_context *tdb, - int (*check) (TDB_DATA key, TDB_DATA data, void *private_data), - void *private_data); - /* @} ******************************************************************/ /* wipe and repack */ int tdb1_wipe_all(struct tdb_context *tdb); int tdb1_repack(struct tdb_context *tdb); -/* Debug functions. Not used in production. */ -char *tdb1_summary(struct tdb_context *tdb); - extern TDB_DATA tdb1_null; #endif /* tdb1.h */ |