X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Ftdb2%2Ftest%2Frun-tdb1-corrupt.c;h=35bc4c3f229554938790ea8bb5a14b1d5e160e11;hb=79d603a5f73dfbb655d8d08f67eecb5f2da542d5;hp=373f079512f5689a9b7c420d079b83587ce6268f;hpb=98c754ffe65bc335f66161d6cc8705d4ea2710ec;p=ccan diff --git a/ccan/tdb2/test/run-tdb1-corrupt.c b/ccan/tdb2/test/run-tdb1-corrupt.c index 373f0795..35bc4c3f 100644 --- a/ccan/tdb2/test/run-tdb1-corrupt.c +++ b/ccan/tdb2/test/run-tdb1-corrupt.c @@ -45,7 +45,7 @@ static void check_test(struct tdb_context *tdb) TDB_DATA key, data; unsigned int i, verifiable, corrupt, sizes[2], dsize, ksize; - ok1(tdb1_check(tdb, NULL, NULL) == 0); + ok1(tdb_check(tdb, NULL, NULL) == TDB_SUCCESS); key.dptr = (void *)"hello"; data.dsize = strlen("world"); @@ -81,7 +81,7 @@ static void check_test(struct tdb_context *tdb) for (i = 0, corrupt = 0; i < tdb->file->map_size * CHAR_BIT; i++) { tdb1_flip_bit(tdb, i); memset(sizes, 0, sizeof(sizes)); - if (tdb1_check(tdb, check, sizes) != 0) + if (tdb_check(tdb, check, sizes) == TDB_ERR_CORRUPT) corrupt++; else if (sizes[0] != ksize || sizes[1] != dsize) corrupt++;