From 875441ea60d9fd9378475526f2f632b932790553 Mon Sep 17 00:00:00 2001 From: Patrick McHardy Date: Wed, 17 Oct 2007 08:48:58 +0000 Subject: Fix sscanf type errors --- ip6tables.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'ip6tables.c') diff --git a/ip6tables.c b/ip6tables.c index 026a4954..f658fc7a 100644 --- a/ip6tables.c +++ b/ip6tables.c @@ -1413,7 +1413,7 @@ int do_command6(int argc, char *argv[], char **table, ip6tc_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)); @@ -1728,18 +1728,18 @@ int do_command6(int argc, char *argv[], char **table, ip6tc_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; -- cgit v1.2.3