svn commit: r183744 - head/sys/netinet

Robert Watson rwatson at FreeBSD.org
Fri Oct 10 14:33:48 UTC 2008


Author: rwatson
Date: Fri Oct 10 14:33:47 2008
New Revision: 183744
URL: http://svn.freebsd.org/changeset/base/183744

Log:
  Fix content and spelling of comment on _ipfw_insn.len -- a count of
  32-bit words, not 32-byte words.
  
  MFC after:	3 days

Modified:
  head/sys/netinet/ip_fw.h

Modified: head/sys/netinet/ip_fw.h
==============================================================================
--- head/sys/netinet/ip_fw.h	Fri Oct 10 11:39:59 2008	(r183743)
+++ head/sys/netinet/ip_fw.h	Fri Oct 10 14:33:47 2008	(r183744)
@@ -223,7 +223,7 @@ enum ipfw_opcodes {		/* arguments (4 byt
  */
 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


More information about the svn-src-all mailing list