summaryrefslogtreecommitdiff
path: root/lib/tdb2/check.c
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2011-12-05 17:04:30 +1030
committerRusty Russell <rusty@rustcorp.com.au>2011-12-05 17:04:30 +1030
commiteff985b7ef3f1adb3da383baaea013f7f3797bb2 (patch)
tree8fd3d0dc6ffcf02d929fb7f656e8ae3d118c9b19 /lib/tdb2/check.c
parent6e3c40500c9c786a5b20a02420fcf48ec0b9b5c4 (diff)
downloadsamba-eff985b7ef3f1adb3da383baaea013f7f3797bb2.tar.gz
samba-eff985b7ef3f1adb3da383baaea013f7f3797bb2.tar.bz2
samba-eff985b7ef3f1adb3da383baaea013f7f3797bb2.zip
tdb2: add an internal TDB_CANT_CHECK flag.
This will be used shortly to indicate that a TDB2 file indicates it cannot be checked. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> (Imported from CCAN commit e01d795c8964b791def1e9f68c386b350b3a2a84)
Diffstat (limited to 'lib/tdb2/check.c')
-rw-r--r--lib/tdb2/check.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/tdb2/check.c b/lib/tdb2/check.c
index 3003b62616..230eaee8e3 100644
--- a/lib/tdb2/check.c
+++ b/lib/tdb2/check.c
@@ -782,6 +782,12 @@ enum TDB_ERROR tdb_check_(struct tdb_context *tdb,
uint64_t features;
enum TDB_ERROR ecode;
+ if (tdb->flags & TDB_CANT_CHECK) {
+ return tdb_logerr(tdb, TDB_SUCCESS, TDB_LOG_WARNING,
+ "tdb_check: database has unknown features,"
+ " cannot check.");
+ }
+
if (tdb->flags & TDB_VERSION1) {
if (tdb1_check(tdb, check, data) == -1)
return tdb->last_error;