Fix content and spelling of comment on _ipfw_insn.len -- a count of

32-bit words, not 32-byte words.

MFC after:	3 days
This commit is contained in:
Robert Watson 2008-10-10 14:33:47 +00:00
parent 9c86351529
commit 1f6ef666b5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=183744

View file

@ -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