From 3f8d6787b7ccff3ed7ff77a3b474856ae1be6a9b Mon Sep 17 00:00:00 2001 From: netblue30 Date: Tue, 5 Jul 2016 07:24:10 -0400 Subject: faudit: dbus --- src/faudit/seccomp.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src/faudit/seccomp.c') diff --git a/src/faudit/seccomp.c b/src/faudit/seccomp.c index 9cc1a20f6..099e0e420 100644 --- a/src/faudit/seccomp.c +++ b/src/faudit/seccomp.c @@ -46,18 +46,17 @@ void seccomp_test(void) { int rv = extract_seccomp(&seccomp_status); if (rv) { - printf("SKIP: cannot extract seccomp configuration on this platform\n"); + printf("INFO: cannot extract seccomp configuration on this platform.\n"); return; } if (seccomp_status == 0) { - printf("BAD: seccomp disabled\n"); - printf("Use \"firejail --seccomp\" to fix it.\n"); + printf("BAD: seccomp disabled. Use \"firejail --seccomp\" to enable it.\n"); } else if (seccomp_status == 1) - printf("GOOD: seccomp strict mode - only read, write, _exit, and sigreturn are allowd\n"); + printf("GOOD: seccomp strict mode - only read, write, _exit, and sigreturn are allowd.\n"); else if (seccomp_status == 2) { - printf("GOOD: seccomp BPF enababled\n"); + printf("GOOD: seccomp BPF enabled.\n"); printf("checking syscalls: "); fflush(0); printf("mount... "); fflush(0); -- cgit v1.2.3-54-g00ecf