From 0e048ac6bffe3567be99e9e24cf739838f7dbfa5 Mon Sep 17 00:00:00 2001 From: Hans Dedecker Date: Thu, 11 Apr 2019 22:00:15 +0200 Subject: [PATCH] treewide: fix compiler warnings Signed-off-by: Hans Dedecker --- src/dhcpv6-ia.c | 2 +- src/odhcpd.c | 13 ------------- 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/src/dhcpv6-ia.c b/src/dhcpv6-ia.c index 9db6a54..007b904 100644 --- a/src/dhcpv6-ia.c +++ b/src/dhcpv6-ia.c @@ -265,7 +265,7 @@ struct write_ctxt { int buf_idx; }; -void dhcpv6_write_ia_addr(struct in6_addr *addr, int prefix, _unused uint32_t pref, +static void dhcpv6_write_ia_addr(struct in6_addr *addr, int prefix, _unused uint32_t pref, _unused uint32_t valid, void *arg) { struct write_ctxt *ctxt = (struct write_ctxt *)arg; diff --git a/src/odhcpd.c b/src/odhcpd.c index fafa3f6..8906384 100644 --- a/src/odhcpd.c +++ b/src/odhcpd.c @@ -300,19 +300,6 @@ struct interface* odhcpd_get_interface_by_index(int ifindex) return NULL; } -struct interface* odhcpd_get_master_interface(void) -{ - struct interface *iface; - - avl_for_each_element(&interfaces, iface, avl) { - if (iface->master) - return iface; - } - - return NULL; -} - - /* Convenience function to receive and do basic validation of packets */ static void odhcpd_receive_packets(struct uloop_fd *u, _unused unsigned int events) { -- 2.30.2