From 3be8c8cc46188511ccb1128a689b3e9c9322beac Mon Sep 17 00:00:00 2001 From: Eric Leblond Date: Mon, 22 Dec 2008 23:02:42 +0100 Subject: Suppress iftable_up function which is not used. Following compilation warning pointed out by Jan Engelhardt, this patch suppresses the iftable_up function which is of no use in this part of libnfnetlink library whom goal is to do ifindex to name resolution. --- src/iftable.c | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'src/iftable.c') diff --git a/src/iftable.c b/src/iftable.c index b6a8e72..7cca66f 100644 --- a/src/iftable.c +++ b/src/iftable.c @@ -172,23 +172,6 @@ int nlif_index2name(struct nlif_handle *h, return -1; } -static int iftable_up(struct nlif_handle *h, unsigned int index) -{ - unsigned int hash; - struct ifindex_node *this; - - hash = index & 0xF; - list_for_each_entry(this, &h->ifindex_hash[hash], head) { - if (this->index == index) { - if (this->flags & IFF_UP) - return 1; - else - return 0; - } - } - return -1; -} - /** Initialize interface table * * Initialize rtnl interface and interface table -- cgit v1.2.3