summaryrefslogtreecommitdiffstats
path: root/iptables-restore.c
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2007-10-17 08:48:58 +0000
committerPatrick McHardy <kaber@trash.net>2007-10-17 08:48:58 +0000
commit875441ea60d9fd9378475526f2f632b932790553 (patch)
treecab9d2a12208245152d63e7042fc2e5d5755e763 /iptables-restore.c
parent31f51c62d1aed362ec1eae8db37bd4ba981a4dcc (diff)
Fix sscanf type errors
Diffstat (limited to 'iptables-restore.c')
-rw-r--r--iptables-restore.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/iptables-restore.c b/iptables-restore.c
index df351ad6..c0e168e6 100644
--- a/iptables-restore.c
+++ b/iptables-restore.c
@@ -74,11 +74,15 @@ iptc_handle_t create_handle(const char *tablename, const char* modprobe )
static int parse_counters(char *string, struct ipt_counters *ctr)
{
- u_int64_t *pcnt, *bcnt;
-
- pcnt = &ctr->pcnt;
- bcnt = &ctr->bcnt;
- return (sscanf(string, "[%llu:%llu]", (unsigned long long *)pcnt, (unsigned long long *)bcnt) == 2);
+ unsigned long long pcnt, bcnt;
+ int ret;
+
+ ret = sscanf(string, "[%llu:%llu]",
+ (unsigned long long *)&pcnt,
+ (unsigned long long *)&bcnt);
+ ctr->pcnt = pcnt;
+ ctr->bcnt = bcnt;
+ return ret == 2;
}
/* global new argv and argc */