From af0904876cc6e2594ff855f391e01722d46e55b2 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 12 Oct 2019 12:32:58 +0100 Subject: [PATCH] test: udp-preload: Remove now-obsolete `bound' Signed-off-by: Ian Jackson --- test/udp-preload.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/udp-preload.c b/test/udp-preload.c index 55e4314..ec3be09 100644 --- a/test/udp-preload.c +++ b/test/udp-preload.c @@ -80,10 +80,6 @@ WRAPS(DEF_OLD) typedef struct{ int af; - union { - struct sockaddr_in v4; - struct sockaddr_in6 v6; - } bound; } fdinfo; static fdinfo **table; static int tablesz; @@ -136,7 +132,6 @@ WRAP(socket) { table[fd]=malloc(sizeof(*table[fd])); if (!table[fd]) goto fail; table[fd]->af=domain; - table[fd]->bound.v4.sin_family=0; return fd; fail: -- 2.30.2