mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
torture: Add discard_const_p() to work around dlz_create prototype
This commit is contained in:
parent
69c2e18865
commit
1a3d6de20a
@ -58,7 +58,7 @@ static bool test_dlz_bind9_create(struct torture_context *tctx)
|
||||
NULL
|
||||
};
|
||||
tctx_static = tctx;
|
||||
torture_assert_int_equal(tctx, dlz_create("samba_dlz", 3, argv, &dbdata,
|
||||
torture_assert_int_equal(tctx, dlz_create("samba_dlz", 3, discard_const_p(char *, argv), &dbdata,
|
||||
"log", dlz_bind9_log_wrapper, NULL), ISC_R_SUCCESS,
|
||||
"Failed to create samba_dlz");
|
||||
|
||||
@ -106,7 +106,7 @@ 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,
|
||||
torture_assert_int_equal(tctx, dlz_create("samba_dlz", 3, discard_const_p(char *, argv), &dbdata,
|
||||
"log", dlz_bind9_log_wrapper,
|
||||
"writeable_zone", dlz_bind9_writeable_zone_hook, NULL),
|
||||
ISC_R_SUCCESS,
|
||||
|
Loading…
Reference in New Issue
Block a user