Module Name:    src
Committed By:   christos
Date:           Sat Jan 22 16:54:48 UTC 2011

Modified Files:
        src/sys/net: bpf.c

Log Message:
fix comment


To generate a diff of this commit:
cvs rdiff -u -r1.160 -r1.161 src/sys/net/bpf.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/net/bpf.c
diff -u src/sys/net/bpf.c:1.160 src/sys/net/bpf.c:1.161
--- src/sys/net/bpf.c:1.160	Sun Jan  2 16:03:45 2011
+++ src/sys/net/bpf.c	Sat Jan 22 11:54:48 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: bpf.c,v 1.160 2011/01/02 21:03:45 christos Exp $	*/
+/*	$NetBSD: bpf.c,v 1.161 2011/01/22 16:54:48 christos Exp $	*/
 
 /*
  * Copyright (c) 1990, 1991, 1993
@@ -39,7 +39,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bpf.c,v 1.160 2011/01/02 21:03:45 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bpf.c,v 1.161 2011/01/22 16:54:48 christos Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_bpf.h"
@@ -1402,8 +1402,7 @@
 	/*
 	 * Craft on-stack mbuf suitable for passing to bpf_filter.
 	 * Note that we cut corners here; we only setup what's
-	 * absolutely needed--this mbuf should never go anywhere else.
-	 */
+	 * absolutely needed--this mbuf should never go anywhere else.  */
 	(void)memset(&mb, 0, sizeof(mb));
 	mb.m_next = m;
 	mb.m_data = data;

Reply via email to