diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2012-06-22 15:07:43 +0930 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2012-06-22 07:35:17 +0200 |
commit | 431667b47c0eac3069ba1e643996619ab61975e5 (patch) | |
tree | 5599a4411b439b1f87086b6fb0cdc9cca96ee67b /lib/dbwrap/dbwrap.h | |
parent | 9d97bf3f47a591a71e96cad8a87ef13a2b277c9c (diff) | |
download | samba-431667b47c0eac3069ba1e643996619ab61975e5.tar.gz samba-431667b47c0eac3069ba1e643996619ab61975e5.tar.bz2 samba-431667b47c0eac3069ba1e643996619ab61975e5.zip |
dbwrap: add dbwrap_check() function.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'lib/dbwrap/dbwrap.h')
-rw-r--r-- | lib/dbwrap/dbwrap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/dbwrap/dbwrap.h b/lib/dbwrap/dbwrap.h index 6c789e91a4..23a43da019 100644 --- a/lib/dbwrap/dbwrap.h +++ b/lib/dbwrap/dbwrap.h @@ -69,6 +69,7 @@ NTSTATUS dbwrap_parse_record(struct db_context *db, TDB_DATA key, void *private_data), void *private_data); int dbwrap_wipe(struct db_context *db); +int dbwrap_check(struct db_context *db); int dbwrap_get_seqnum(struct db_context *db); int dbwrap_transaction_start(struct db_context *db); int dbwrap_transaction_commit(struct db_context *db); |