diff options
author | David VaĊĦek <david.vasek@nic.cz> | 2019-08-23 15:11:11 +0200 |
---|---|---|
committer | Daniel Salzman <daniel.salzman@nic.cz> | 2019-09-11 20:09:49 +0200 |
commit | ebf12222557152c95c5d5bb77a9904aadfe9df20 (patch) | |
tree | da2c15b59b8f7bddacc0e1bd2f9e17024b4ec158 /tests-fuzz | |
parent | common/ref.c: not used anymore, removing it (diff) | |
download | knot-ebf12222557152c95c5d5bb77a9904aadfe9df20.tar.xz knot-ebf12222557152c95c5d5bb77a9904aadfe9df20.zip |
no dynamic configuration: replace ifacelist_t with former (list_t) l, drop the (list_t) u
Diffstat (limited to 'tests-fuzz')
-rw-r--r-- | tests-fuzz/knotd_wrap/udp-handler.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests-fuzz/knotd_wrap/udp-handler.c b/tests-fuzz/knotd_wrap/udp-handler.c index f7de5a2e8..ffba8480c 100644 --- a/tests-fuzz/knotd_wrap/udp-handler.c +++ b/tests-fuzz/knotd_wrap/udp-handler.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz> +/* Copyright (C) 2019 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz> This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -98,7 +98,7 @@ void udp_master_init_stdio(server_t *server) { ifc->fd_udp[0] = STDIN_FILENO; ifc->fd_udp_count = 1; - add_tail(&server->ifaces->l, (node_t *)ifc); + add_tail(server->ifaces, (node_t *)ifc); _udp_init = udp_stdin_init; _udp_recv = udp_stdin_recv; |