summaryrefslogtreecommitdiffstats
path: root/iptables.c
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2007-09-05 14:10:53 +0000
committerPatrick McHardy <kaber@trash.net>2007-09-05 14:10:53 +0000
commitb73691f9e67149deefbc2d2115d66dfc62264333 (patch)
tree91d7aad991612c21f4add4e1e54a2c16cf914b54 /iptables.c
parent31317ed1f9103434adda716abbe65e9fc7bdd418 (diff)
Fix strict aliasing warnings
Diffstat (limited to 'iptables.c')
-rw-r--r--iptables.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/iptables.c b/iptables.c
index 344d2d65..549c6cd0 100644
--- a/iptables.c
+++ b/iptables.c
@@ -1469,6 +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;
memset(&fw, 0, sizeof(fw));
@@ -1793,12 +1794,14 @@ int do_command(int argc, char *argv[], char **table, iptc_handle_t *handle)
"-%c requires packet and byte counter",
opt2char(OPT_COUNTERS));
- if (sscanf(pcnt, "%llu", (unsigned long long *)&fw.counters.pcnt) != 1)
+ cnt = &fw.counters.pcnt;
+ if (sscanf(pcnt, "%llu", (unsigned long long *)cnt) != 1)
exit_error(PARAMETER_PROBLEM,
"-%c packet counter not numeric",
opt2char(OPT_COUNTERS));
- if (sscanf(bcnt, "%llu", (unsigned long long *)&fw.counters.bcnt) != 1)
+ cnt = &fw.counters.bcnt;
+ if (sscanf(bcnt, "%llu", (unsigned long long *)cnt) != 1)
exit_error(PARAMETER_PROBLEM,
"-%c byte counter not numeric",
opt2char(OPT_COUNTERS));