From f1dc5b61db51f946663b2e0dc08c37fdc6b87194 Mon Sep 17 00:00:00 2001 From: martin Date: Fri, 4 Aug 2006 23:18:53 +0000 Subject: [PATCH] Fix typo in comment --- sys/net/bpf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/net/bpf.c b/sys/net/bpf.c index ee6ec83de0fd..fcf61ba1bf3f 100644 --- a/sys/net/bpf.c +++ b/sys/net/bpf.c @@ -1,4 +1,4 @@ -/* $NetBSD: bpf.c,v 1.120 2006/07/26 13:54:13 christos Exp $ */ +/* $NetBSD: bpf.c,v 1.121 2006/08/04 23:18:53 martin Exp $ */ /* * Copyright (c) 1990, 1991, 1993 @@ -39,7 +39,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: bpf.c,v 1.120 2006/07/26 13:54:13 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: bpf.c,v 1.121 2006/08/04 23:18:53 martin Exp $"); #include #include @@ -466,7 +466,7 @@ bpf_read(struct file *fp, off_t *offp, struct uio *uio, /* * Restrict application to use a buffer the same size as - * as kernel buffers. + * the kernel buffers. */ if (uio->uio_resid != d->bd_bufsize) return (EINVAL);