summaryrefslogtreecommitdiffstats
path: root/iptables/xtables-restore.c
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2018-08-02 17:05:16 +0200
committerFlorian Westphal <fw@strlen.de>2018-08-04 14:26:46 +0200
commit1cc09188079a64dc8b733f198c959cfb441e6e20 (patch)
tree4de4832ed055c237569b22491e13e728d3a463dc /iptables/xtables-restore.c
parent78b9d438037f2c83a7bbb73eb1b86cc295967905 (diff)
xshared: Consolidate parse_counters()
Move this helper function into xshared. While being at it, drop the need for temporary variables and take over null pointer tolerance from the implementation in iptables-xml.c. Signed-off-by: Phil Sutter <phil@nwl.cc> Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'iptables/xtables-restore.c')
-rw-r--r--iptables/xtables-restore.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/iptables/xtables-restore.c b/iptables/xtables-restore.c
index 0a3d1a31..018d3fd3 100644
--- a/iptables/xtables-restore.c
+++ b/iptables/xtables-restore.c
@@ -56,17 +56,6 @@ static void print_usage(const char *name, const char *version)
" [ --ipv6 ]\n", name);
}
-static int parse_counters(char *string, struct xt_counters *ctr)
-{
- unsigned long long pcnt, bcnt;
- int ret;
-
- ret = sscanf(string, "[%llu:%llu]", &pcnt, &bcnt);
- ctr->pcnt = pcnt;
- ctr->bcnt = bcnt;
- return ret == 2;
-}
-
/* global new argv and argc */
static char *newargv[255];
static int newargc;