summaryrefslogtreecommitdiffstats
path: root/sys/netinet
diff options
context:
space:
mode:
authorluigi <luigi@FreeBSD.org>2009-12-23 12:00:50 +0000
committerluigi <luigi@FreeBSD.org>2009-12-23 12:00:50 +0000
commitbe2e837cde8043abe912955566418c09ec765cb3 (patch)
tree844bb59182003bf6a4a05fd5f5f37a3cf16fa184 /sys/netinet
parent23c3bda2df0c608f826b3c7bb89df2c2975f9214 (diff)
downloadFreeBSD-src-be2e837cde8043abe912955566418c09ec765cb3.zip
FreeBSD-src-be2e837cde8043abe912955566418c09ec765cb3.tar.gz
fix build on 64-bit architectures.
Also fix the indentation on a few lines.
Diffstat (limited to 'sys/netinet')
-rw-r--r--sys/netinet/ipfw/ip_fw2.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/sys/netinet/ipfw/ip_fw2.c b/sys/netinet/ipfw/ip_fw2.c
index b19ece4..14fecaf 100644
--- a/sys/netinet/ipfw/ip_fw2.c
+++ b/sys/netinet/ipfw/ip_fw2.c
@@ -1962,8 +1962,8 @@ do { \
f->pcnt++; /* update stats */
f->bcnt += pktlen;
f->timestamp = time_uptime;
- l = 0; /* exit inner loop */
- break;
+ l = 0; /* exit inner loop */
+ break;
case O_SKIPTO:
f->pcnt++; /* update stats */
@@ -1974,8 +1974,8 @@ do { \
* (horrible hacks to avoid changing the ABI).
*/
if (cmd->arg1 != IP_FW_TABLEARG &&
- (uint32_t)f->x_next == chain->id) {
- f_pos = (uint32_t)f->next_rule;
+ (uintptr_t)f->x_next == chain->id) {
+ f_pos = (uintptr_t)f->next_rule;
} else {
int i = (cmd->arg1 == IP_FW_TABLEARG) ?
tablearg : cmd->arg1;
@@ -1985,18 +1985,18 @@ do { \
f_pos = ipfw_find_rule(chain, i, 0);
/* update the cache */
if (cmd->arg1 != IP_FW_TABLEARG) {
- f->next_rule =
+ f->next_rule =
(void *)(uintptr_t)f_pos;
f->x_next =
(void *)(uintptr_t)chain->id;
}
- }
- /*
+ }
+ /*
* Skip disabled rules, and re-enter
* the inner loop with the correct
* f_pos, f, l and cmd.
- * Also clear cmdlen and skip_or
- */
+ * Also clear cmdlen and skip_or
+ */
for (; f_pos < chain->n_rules - 1 &&
(V_set_disable &
(1 << chain->map[f_pos]->set));
@@ -2004,12 +2004,12 @@ do { \
;
/* prepare to enter the inner loop */
f = chain->map[f_pos];
- l = f->cmd_len;
- cmd = f->cmd;
- match = 1;
- cmdlen = 0;
- skip_or = 0;
- break;
+ l = f->cmd_len;
+ cmd = f->cmd;
+ match = 1;
+ cmdlen = 0;
+ skip_or = 0;
+ break;
case O_REJECT:
/*
OpenPOWER on IntegriCloud