From: Douglas Bagnall Date: Sat, 24 Apr 2021 04:17:46 +0000 (+1200) Subject: torture/dlz: minor reformatting for README.Coding X-Git-Tag: tevent-0.13.0~379 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d89c90ab45bdf0cc2236f71c02b05208fd715f3;p=thirdparty%2Fsamba.git torture/dlz: minor reformatting for README.Coding BUG: https://bugzilla.samba.org/show_bug.cgi?id=15040 Signed-off-by: Douglas Bagnall Reviewed-by: Andrew Bartlett --- diff --git a/source4/torture/dns/dlz_bind9.c b/source4/torture/dns/dlz_bind9.c index da3706c2627..6ace3384964 100644 --- a/source4/torture/dns/dlz_bind9.c +++ b/source4/torture/dns/dlz_bind9.c @@ -142,9 +142,12 @@ static bool test_dlz_bind9_configure(struct torture_context *tctx) NULL }; tctx_static = tctx; - torture_assert_int_equal(tctx, dlz_create("samba_dlz", 3, argv, &dbdata, - "log", dlz_bind9_log_wrapper, - "writeable_zone", dlz_bind9_writeable_zone_hook, NULL), + ret = dlz_create("samba_dlz", 3, argv, &dbdata, + "log", dlz_bind9_log_wrapper, + "writeable_zone", dlz_bind9_writeable_zone_hook, + NULL); + torture_assert_int_equal(tctx, + ret, ISC_R_SUCCESS, "Failed to create samba_dlz");