From cab6e116786641e28747de3f70c8cd89ba17673f Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Mon, 18 Jun 2012 22:30:25 +0930 Subject: TDB2: remove TDB1 compatibility. This rips out all the TDB1 compatibility from tdb2. Signed-off-by: Rusty Russell --- lib/tdb2/test/run-12-check.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'lib/tdb2/test/run-12-check.c') diff --git a/lib/tdb2/test/run-12-check.c b/lib/tdb2/test/run-12-check.c index 4173fb05c8..cc57726f93 100644 --- a/lib/tdb2/test/run-12-check.c +++ b/lib/tdb2/test/run-12-check.c @@ -12,11 +12,7 @@ int main(int argc, char *argv[]) struct tdb_context *tdb; int flags[] = { TDB_INTERNAL, TDB_INTERNAL|TDB_CONVERT, - TDB_CONVERT, - TDB_INTERNAL|TDB_VERSION1, - TDB_VERSION1, - TDB_INTERNAL|TDB_CONVERT|TDB_VERSION1, - TDB_CONVERT|TDB_VERSION1 }; + TDB_CONVERT }; struct tdb_data key = tdb_mkdata("key", 3); struct tdb_data data = tdb_mkdata("data", 4); -- cgit