From 1f6ef666b58e590037ed4146a496125ca08837cf Mon Sep 17 00:00:00 2001 From: Robert Watson Date: Fri, 10 Oct 2008 14:33:47 +0000 Subject: [PATCH] Fix content and spelling of comment on _ipfw_insn.len -- a count of 32-bit words, not 32-byte words. MFC after: 3 days --- sys/netinet/ip_fw.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netinet/ip_fw.h b/sys/netinet/ip_fw.h index a274f94b9661..a0123ada255d 100644 --- a/sys/netinet/ip_fw.h +++ b/sys/netinet/ip_fw.h @@ -223,7 +223,7 @@ enum ipfw_opcodes { /* arguments (4 byte each) */ */ typedef struct _ipfw_insn { /* template for instructions */ enum ipfw_opcodes opcode:8; - u_int8_t len; /* numer of 32-byte words */ + u_int8_t len; /* number of 32-bit words */ #define F_NOT 0x80 #define F_OR 0x40 #define F_LEN_MASK 0x3f