aboutsummaryrefslogtreecommitdiffstats
path: root/src/firejail/seccomp.c
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2015-11-03 08:55:40 -0500
committerLibravatar netblue30 <netblue30@yahoo.com>2015-11-03 08:55:40 -0500
commitdbb15d0067f1fce7478ff4059a5e1d78dec37804 (patch)
treefb9d4cc6902c65d69df90e8a2fc108b58c4d6afa /src/firejail/seccomp.c
parentcleanup (diff)
downloadfirejail-dbb15d0067f1fce7478ff4059a5e1d78dec37804.tar.gz
firejail-dbb15d0067f1fce7478ff4059a5e1d78dec37804.tar.zst
firejail-dbb15d0067f1fce7478ff4059a5e1d78dec37804.zip
--private.print option
Diffstat (limited to 'src/firejail/seccomp.c')
-rw-r--r--src/firejail/seccomp.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/firejail/seccomp.c b/src/firejail/seccomp.c
index f8053d698..a3efa54df 100644
--- a/src/firejail/seccomp.c
+++ b/src/firejail/seccomp.c
@@ -385,7 +385,7 @@ void seccomp_filter_32(void) {
385 ; 385 ;
386 } 386 }
387 else if (arg_debug) { 387 else if (arg_debug) {
388 printf("dual i386/amd64 seccomp filter\n"); 388 printf("Dual i386/amd64 seccomp filter configured\n");
389 } 389 }
390} 390}
391 391
@@ -598,9 +598,6 @@ int seccomp_filter_drop(void) {
598 fprintf(stderr, "Warning: seccomp disabled, it requires a Linux kernel version 3.5 or newer.\n"); 598 fprintf(stderr, "Warning: seccomp disabled, it requires a Linux kernel version 3.5 or newer.\n");
599 return 1; 599 return 1;
600 } 600 }
601 else if (arg_debug) {
602 printf("seccomp enabled\n");
603 }
604 601
605 return 0; 602 return 0;
606} 603}