aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet
diff options
context:
space:
mode:
authorLuigi Rizzo <luigi@FreeBSD.org>2009-02-19 21:29:30 +0000
committerLuigi Rizzo <luigi@FreeBSD.org>2009-02-19 21:29:30 +0000
commitfaf51e964f77cb85c5e4b0b0fe7932b382658a51 (patch)
tree25ad7717f1ae06c039f29a88a2599599de85f874 /sys/netinet
parentaacef1f255101d2d88914554773ee1f4ac306507 (diff)
Notes
Diffstat (limited to 'sys/netinet')
-rw-r--r--sys/netinet/ip_fw2.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netinet/ip_fw2.c b/sys/netinet/ip_fw2.c
index 01d71577497e..784f1e0d4a13 100644
--- a/sys/netinet/ip_fw2.c
+++ b/sys/netinet/ip_fw2.c
@@ -2219,15 +2219,15 @@ ipfw_chk(struct ip_fw_args *args)
* pointer might become stale after other pullups (but we never use it
* this way).
*/
-#define PULLUP_TO(len, p, T) \
+#define PULLUP_TO(_len, p, T) \
do { \
- int x = (len) + sizeof(T); \
+ int x = (_len) + sizeof(T); \
if ((m)->m_len < x) { \
args->m = m = m_pullup(m, x); \
if (m == NULL) \
goto pullup_failed; \
} \
- p = (mtod(m, char *) + (len)); \
+ p = (mtod(m, char *) + (_len)); \
} while (0)
/*
@@ -3717,7 +3717,7 @@ zero_entry(struct ip_fw_chain *chain, u_int32_t arg, int log_only)
continue;
clear_counters(rule, log_only);
}
- msg = log_only ? "logging counts reset" :
+ msg = log_only ? "All logging counts reset" :
"Accounting cleared";
} else {
int cleared = 0;