svn commit: r183872 - in stable/7/sys: . netinet

Robert Watson rwatson at FreeBSD.org
Tue Oct 14 08:03:59 UTC 2008


Author: rwatson
Date: Tue Oct 14 08:03:58 2008
New Revision: 183872
URL: http://svn.freebsd.org/changeset/base/183872

Log:
  Merge r183744 from head to stable/7:
  
    Fix content and spelling of comment on _ipfw_insn.len -- a count of
    32-bit words, not 32-byte words.
  
  Approved by:	re (kib)

Modified:
  stable/7/sys/   (props changed)
  stable/7/sys/netinet/ip_fw.h

Modified: stable/7/sys/netinet/ip_fw.h
==============================================================================
--- stable/7/sys/netinet/ip_fw.h	Tue Oct 14 07:59:23 2008	(r183871)
+++ stable/7/sys/netinet/ip_fw.h	Tue Oct 14 08:03:58 2008	(r183872)
@@ -217,7 +217,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-stable mailing list