From a9c79c7ba494b39bad959a0c833e58a343686272 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Fri, 23 Oct 2009 23:40:02 +0200 Subject: libiptc: remove unused functions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix the two warnings in libiptc.c: CC libiptc/libip4tc.lo libiptc/libiptc.c:1570:1: warning: ‘iptc_num_rules’ defined but not used libiptc/libiptc.c:1586:1: warning: ‘iptc_get_rule’ defined but not used CC libiptc/libip6tc.lo libiptc/libiptc.c:1570:1: warning: ‘ip6tc_num_rules’ defined but not used libiptc/libiptc.c:1586:1: warning: ‘ip6tc_get_rule’ defined but not used Signed-off-by: Jan Engelhardt --- libiptc/libiptc.c | 39 --------------------------------------- 1 file changed, 39 deletions(-) (limited to 'libiptc') diff --git a/libiptc/libiptc.c b/libiptc/libiptc.c index 4c3437e3..b445331e 100644 --- a/libiptc/libiptc.c +++ b/libiptc/libiptc.c @@ -1563,45 +1563,6 @@ TC_NEXT_RULE(const STRUCT_ENTRY *prev, struct xtc_handle *handle) return r->entry; } -/* How many rules in this chain? */ -static unsigned int -TC_NUM_RULES(const char *chain, struct xtc_handle *handle) -{ - struct chain_head *c; - iptc_fn = TC_NUM_RULES; - CHECK(handle); - - c = iptcc_find_label(chain, handle); - if (!c) { - errno = ENOENT; - return (unsigned int)-1; - } - - return c->num_rules; -} - -static const STRUCT_ENTRY * -TC_GET_RULE(const char *chain, unsigned int n, struct xtc_handle *handle) -{ - struct chain_head *c; - struct rule_head *r; - - iptc_fn = TC_GET_RULE; - - CHECK(handle); - - c = iptcc_find_label(chain, handle); - if (!c) { - errno = ENOENT; - return NULL; - } - - r = iptcc_get_rule_num(c, n); - if (!r) - return NULL; - return r->entry; -} - /* Returns a pointer to the target name of this position. */ static const char *standard_target_map(int verdict) { -- cgit v1.2.3