aboutsummaryrefslogtreecommitdiffstats
path: root/src/firejail/sandbox.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/firejail/sandbox.c')
-rw-r--r--src/firejail/sandbox.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/firejail/sandbox.c b/src/firejail/sandbox.c
index c1a6d92ec..ddfcc8404 100644
--- a/src/firejail/sandbox.c
+++ b/src/firejail/sandbox.c
@@ -410,6 +410,8 @@ int sandbox(void* sandbox_arg) {
410 if (arg_seccomp == 1) { 410 if (arg_seccomp == 1) {
411 if (arg_seccomp_list_keep) 411 if (arg_seccomp_list_keep)
412 seccomp_filter_keep(); // this will also save the fmyilter to MNT_DIR/seccomp file 412 seccomp_filter_keep(); // this will also save the fmyilter to MNT_DIR/seccomp file
413 else if (arg_seccomp_list_errno)
414 seccomp_filter_errno(); // this will also save the filter to MNT_DIR/seccomp file
413 else 415 else
414 seccomp_filter_drop(); // this will also save the filter to MNT_DIR/seccomp file 416 seccomp_filter_drop(); // this will also save the filter to MNT_DIR/seccomp file
415 } 417 }