summaryrefslogtreecommitdiffstats
path: root/iptables-save.c
diff options
context:
space:
mode:
authorMaciej Zenczykowski <maze@google.com>2011-04-04 15:37:13 +0200
committerPatrick McHardy <kaber@trash.net>2011-04-04 15:37:13 +0200
commitbb9fe8059f40f0dde9c780498f5af42f5aa6a179 (patch)
treed1ef0622b06e6164d135aeda36d2d51df0b9add6 /iptables-save.c
parent85aae15567b8ae1eaedf9f011ba7aef80dfca208 (diff)
v4: rename print_rule() to print_rule4()
Signed-off-by: Maciej Zenczykowski <maze@google.com> Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'iptables-save.c')
-rw-r--r--iptables-save.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/iptables-save.c b/iptables-save.c
index a0aa5d80..dee17528 100644
--- a/iptables-save.c
+++ b/iptables-save.c
@@ -107,7 +107,7 @@ static int do_output(const char *tablename)
/* Dump out rules */
e = iptc_first_rule(chain, h);
while(e) {
- print_rule(e, h, chain, show_counters);
+ print_rule4(e, h, chain, show_counters);
e = iptc_next_rule(e, h);
}
}