1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-28 11:57:28 +00:00

Fix typo in a comment.

This commit is contained in:
Ruslan Ermilov 2005-02-12 18:10:26 +00:00
parent 1042be684d
commit 3667c04da9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=141751

View File

@ -53,7 +53,7 @@ struct ng_bpf_hookprog {
char thisHook[NG_HOOKSIZ]; /* name of hook */
char ifMatch[NG_HOOKSIZ]; /* match dest hook */
char ifNotMatch[NG_HOOKSIZ]; /* !match dest hook */
int32_t bpf_prog_len; /* #isns in program */
int32_t bpf_prog_len; /* #insns in program */
struct bpf_insn bpf_prog[]; /* bpf program */
};