From: Matthijs Mekking Date: Thu, 26 Nov 2020 12:37:24 +0000 (+0100) Subject: Add one missing check to nsec3param unit test X-Git-Tag: v9.17.8~23^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dff01583db513045e6ef10a7abcd1b5cda82d729;p=thirdparty%2Fbind9.git Add one missing check to nsec3param unit test Caught this missing check with clang-build while backporting #1620 to the v9_16 branch. --- diff --git a/lib/dns/tests/nsec3param_test.c b/lib/dns/tests/nsec3param_test.c index 7cb46f2ab14..3ae5da41684 100644 --- a/lib/dns/tests/nsec3param_test.c +++ b/lib/dns/tests/nsec3param_test.c @@ -155,7 +155,7 @@ nsec3param_change_test(const nsec3param_change_test_params_t *test) { */ result = dns__zone_lookup_nsec3param(zone, &lookup, ¶m, saltbuf, test->resalt); - + assert_int_equal(result, test->expected_result); assert_int_equal(param.hash, expect.hash); assert_int_equal(param.flags, expect.flags); assert_int_equal(param.iterations, expect.iterations);