Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 10 Oct 2008 14:33:47 +0000 (UTC)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r183744 - head/sys/netinet
Message-ID:  <200810101433.m9AEXlH5093736@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200810101433.m9AEXlH5093736>