diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2002-11-29 18:35:16 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2002-11-29 18:35:16 +0000 |
commit | 77247224d7146686530acb54db5b30867ed39be0 (patch) | |
tree | 24fdb09523da47b72cf823393822812fc195348e /sys | |
parent | 17ca6171958bd50bac72f467792006f0347159a5 (diff) |
minor KNF
Diffstat (limited to 'sys')
-rw-r--r-- | sys/net/bpf.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/net/bpf.h b/sys/net/bpf.h index 8c0f26bffe4..43fec24fa25 100644 --- a/sys/net/bpf.h +++ b/sys/net/bpf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bpf.h,v 1.19 2002/11/29 18:25:22 mickey Exp $ */ +/* $OpenBSD: bpf.h,v 1.20 2002/11/29 18:35:15 henning Exp $ */ /* $NetBSD: bpf.h,v 1.15 1996/12/13 07:57:33 mikel Exp $ */ /* @@ -44,7 +44,7 @@ #ifndef _NET_BPF_H_ #define _NET_BPF_H_ -/* BSD style release date */ +/* BSD style release date */ #define BPF_RELEASE 199606 typedef int32_t bpf_int32; @@ -67,7 +67,7 @@ struct bpf_program { u_int bf_len; struct bpf_insn *bf_insns; }; - + /* * Struct returned by BIOCGSTATS. */ @@ -77,7 +77,7 @@ struct bpf_stat { }; /* - * Struct return by BIOCVERSION. This represents the version number of + * Struct return by BIOCVERSION. This represents the version number of * the filter language described by the instruction encodings below. * bpf understands a program iff kernel_major == filter_major && * kernel_minor >= filter_minor, that is, if the value returned by the |