aboutsummaryrefslogtreecommitdiff
path: root/sys/net
diff options
context:
space:
mode:
authorGordon Bergling <gbe@FreeBSD.org>2022-09-04 15:30:05 +0000
committerGordon Bergling <gbe@FreeBSD.org>2022-09-04 15:30:05 +0000
commit8a153724cd464e7fb156203dfb1304c90cfaec1c (patch)
tree0d58c9269cdfc9ed62c5a33bf21031dc8d857952 /sys/net
parent990878b07f4a452d3e4c01e98001f94e3a868fb1 (diff)
downloadsrc-8a153724cd464e7fb156203dfb1304c90cfaec1c.tar.gz
src-8a153724cd464e7fb156203dfb1304c90cfaec1c.zip
bpf(3): Grammar fix for a source code comment
- s/that that/that the/ MFC after: 3 days
Diffstat (limited to 'sys/net')
-rw-r--r--sys/net/bpf_filter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net/bpf_filter.c b/sys/net/bpf_filter.c
index 09ef9c460934..b942de5965b5 100644
--- a/sys/net/bpf_filter.c
+++ b/sys/net/bpf_filter.c
@@ -570,7 +570,7 @@ bpf_validate(const struct bpf_insn *f, int len)
if (!BPF_VALIDATE_CODE(p->code))
return (0);
/*
- * Check that that jumps are forward, and within
+ * Check that the jumps are forward, and within
* the code block.
*/
if (BPF_CLASS(p->code) == BPF_JMP) {