From dff01583db513045e6ef10a7abcd1b5cda82d729 Mon Sep 17 00:00:00 2001 From: Matthijs Mekking Date: Thu, 26 Nov 2020 13:37:24 +0100 Subject: [PATCH] Add one missing check to nsec3param unit test Caught this missing check with clang-build while backporting #1620 to the v9_16 branch. --- lib/dns/tests/nsec3param_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dns/tests/nsec3param_test.c b/lib/dns/tests/nsec3param_test.c index 7cb46f2ab1..3ae5da4168 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);