From: Daniel Wagner Date: Tue, 12 Feb 2013 09:19:41 +0000 (+0100) Subject: iptables: Do not pass table into dump_match() and dump_target() X-Git-Tag: 1.12~121 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=357e1f69689bd29d2f151f984770ae98b03f1b0e;p=platform%2Fupstream%2Fconnman.git iptables: Do not pass table into dump_match() and dump_target() --- diff --git a/src/iptables.c b/src/iptables.c index 67dff38..a20e70c 100644 --- a/src/iptables.c +++ b/src/iptables.c @@ -1120,8 +1120,7 @@ static void dump_ip(struct ipt_entry *entry) connman_info("\tdst %s/%s", ip_string, ip_mask); } -static void dump_target(struct connman_iptables *table, - struct ipt_entry *entry) +static void dump_target(struct ipt_entry *entry) { struct xtables_target *xt_t; @@ -1156,9 +1155,7 @@ static void dump_target(struct connman_iptables *table, break; default: - connman_info("\tJUMP @%p (0x%x)", - (char*)table->blob_entries->entrytable + - t->verdict, t->verdict); + connman_info("\tJUMP (0x%x)", t->verdict); break; } @@ -1181,7 +1178,7 @@ static void dump_target(struct connman_iptables *table, } } -static void dump_match(struct connman_iptables *table, struct ipt_entry *entry) +static void dump_match(struct ipt_entry *entry) { struct xtables_match *xt_m; struct xt_entry_match *match; @@ -1244,8 +1241,8 @@ static int dump_entry(struct connman_iptables *table, entry->next_offset); } - dump_match(table, entry); - dump_target(table, entry); + dump_match(entry); + dump_target(entry); dump_ip(entry); return 0;