From c834ee635c41df21715d633d4ba76c64c72ebe64 Mon Sep 17 00:00:00 2001 From: Willem Toorop Date: Mon, 3 Nov 2025 11:15:11 +0100 Subject: [PATCH] Fix function signature for compiling test --- testcode/fake_event.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testcode/fake_event.c b/testcode/fake_event.c index 2e25f9b4c..a13ff6ff4 100644 --- a/testcode/fake_event.c +++ b/testcode/fake_event.c @@ -1134,8 +1134,8 @@ outside_network_create(struct comm_base* base, size_t bufsize, int ATTR_UNUSED(delayclose), int ATTR_UNUSED(tls_use_sni), struct dt_env* ATTR_UNUSED(dtenv), int ATTR_UNUSED(udp_connect), int ATTR_UNUSED(max_reuse_tcp_queries), int ATTR_UNUSED(tcp_reuse_timeout), - int ATTR_UNUSED(tcp_auth_query_timeout), char** ATTR_UNUSED(num_dist), - int ATTR_UNUSED(dist)) + int ATTR_UNUSED(tcp_auth_query_timeout), const char** ATTR_UNUSED(dist), + const char** ATTR_UNUSED(dist_tsig), int ATTR_UNUSED(num_dist)) { struct replay_runtime* runtime = (struct replay_runtime*)base; struct outside_network* outnet = calloc(1, -- 2.47.3