commit 61b8a9e90d8d6eaa3c9ef9b8a1446820a138d87f
parent de97318a9576ac0981d90619e1ee5600a7a58353
Author: Joris Vink <joris@coders.se>
Date: Wed, 25 Sep 2019 16:14:58 +0200
fix tpyo
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/seccomp.c b/src/seccomp.c
@@ -259,7 +259,7 @@ kore_seccomp_enable(void)
if (prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &prog) == -1)
fatal("prctl: %s", errno_s);
- if (!kore_quit)
+ if (!kore_quiet)
kore_log(LOG_INFO, "seccomp sandbox activated");
}