summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamanta Navarro <ferivoz@riseup.net>2020-10-03 11:50:38 +0000
committerPaul Moore <paul@paul-moore.com>2020-10-21 10:26:29 -0400
commitd9cdb27c45dd9c1efbf9246533c58e07c0032162 (patch)
treee999a97b29638b05d2b5c75e37222a40edb5f258
parent0336e194e65918ff98b529aa1bab7a01dd8873ea (diff)
downloadlibseccomp-d9cdb27c45dd9c1efbf9246533c58e07c0032162.tar.gz
all: fix typo in Berkeley
Signed-off-by: Samanta Navarro <ferivoz@riseup.net> Acked-by: Tom Hromatka <tom.hromatka@oracle.com> Signed-off-by: Paul Moore <paul@paul-moore.com> (imported from commit ff6923163174ed156c4c0645961e602396298df9)
-rw-r--r--doc/man/man3/seccomp_export_bpf.32
-rw-r--r--src/python/seccomp.pyx2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/man/man3/seccomp_export_bpf.3 b/doc/man/man3/seccomp_export_bpf.3
index 98b3572..9ce06df 100644
--- a/doc/man/man3/seccomp_export_bpf.3
+++ b/doc/man/man3/seccomp_export_bpf.3
@@ -24,7 +24,7 @@ The
.BR seccomp_export_bpf ()
and
.BR seccomp_export_pfc ()
-functions generate and output the current seccomp filter in either BPF (Berkley
+functions generate and output the current seccomp filter in either BPF (Berkeley
Packet Filter) or PFC (Pseudo Filter Code). The output of
.BR seccomp_export_bpf ()
is suitable for loading into the kernel, while the output of
diff --git a/src/python/seccomp.pyx b/src/python/seccomp.pyx
index 13aa669..1a9eb24 100644
--- a/src/python/seccomp.pyx
+++ b/src/python/seccomp.pyx
@@ -1023,7 +1023,7 @@ cdef class SyscallFilter:
file - the output file
Description:
- Output the filter in Berkley Packet Filter (BPF) to the given
+ Output the filter in Berkeley Packet Filter (BPF) to the given
file. The output is identical to what is loaded into the
Linux Kernel.
"""