aboutsummaryrefslogtreecommitdiffstats
path: root/src/faudit/seccomp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/faudit/seccomp.c')
-rw-r--r--src/faudit/seccomp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/faudit/seccomp.c b/src/faudit/seccomp.c
index fe814598b..1c188aa45 100644
--- a/src/faudit/seccomp.c
+++ b/src/faudit/seccomp.c
@@ -54,7 +54,7 @@ void seccomp_test(void) {
54 printf("BAD: seccomp disabled. Use \"firejail --seccomp\" to enable it.\n"); 54 printf("BAD: seccomp disabled. Use \"firejail --seccomp\" to enable it.\n");
55 } 55 }
56 else if (seccomp_status == 1) 56 else if (seccomp_status == 1)
57 printf("GOOD: seccomp strict mode - only read, write, _exit, and sigreturn are allowd.\n"); 57 printf("GOOD: seccomp strict mode - only read, write, _exit, and sigreturn are allowed.\n");
58 else if (seccomp_status == 2) { 58 else if (seccomp_status == 2) {
59 printf("GOOD: seccomp BPF enabled.\n"); 59 printf("GOOD: seccomp BPF enabled.\n");
60 60