summaryrefslogtreecommitdiffstats
path: root/iptables.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.c
parent31f51c62d1aed362ec1eae8db37bd4ba981a4dcc (diff)
Fix sscanf type errors
Diffstat (limited to 'iptables.c')
-rw-r--r--iptables.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/iptables.c b/iptables.c
index d7a45eeb..25ca3583 100644
--- a/iptables.c
+++ b/iptables.c
@@ -1469,7 +1469,7 @@ int do_command(int argc, char *argv[], char **table, iptc_handle_t *handle)
const char *jumpto = "";
char *protocol = NULL;
int proto_used = 0;
- u_int64_t *cnt;
+ unsigned long long cnt;
memset(&fw, 0, sizeof(fw));
@@ -1794,18 +1794,17 @@ int do_command(int argc, char *argv[], char **table, iptc_handle_t *handle)
"-%c requires packet and byte counter",
opt2char(OPT_COUNTERS));
- cnt = &fw.counters.pcnt;
- if (sscanf(pcnt, "%llu", (unsigned long long *)cnt) != 1)
+ if (sscanf(pcnt, "%llu", (unsigned long long *)&cnt) != 1)
exit_error(PARAMETER_PROBLEM,
"-%c packet counter not numeric",
opt2char(OPT_COUNTERS));
+ fw.counters.pcnt = cnt;
- cnt = &fw.counters.bcnt;
- if (sscanf(bcnt, "%llu", (unsigned long long *)cnt) != 1)
+ if (sscanf(bcnt, "%llu", (unsigned long long *)&cnt) != 1)
exit_error(PARAMETER_PROBLEM,
"-%c byte counter not numeric",
opt2char(OPT_COUNTERS));
-
+ fw.counters.bcnt = cnt;
break;