sandbox: policy levels

This commit is contained in:
Robert Swiecki 2018-02-12 03:06:28 +01:00
parent 5f35a0d2e0
commit 9679042b49

View File

@ -62,7 +62,7 @@ bool preparePolicy(nsjconf_t* nsjconf) {
return true; return true;
} }
if (!nsjconf->kafel_file_path.empty() && !nsjconf->kafel_string.empty()) { if (!nsjconf->kafel_file_path.empty() && !nsjconf->kafel_string.empty()) {
LOG_E( LOG_W(
"You specified both kafel seccomp policy, and kafel seccomp file. Specify one " "You specified both kafel seccomp policy, and kafel seccomp file. Specify one "
"only"); "only");
return false; return false;
@ -87,7 +87,7 @@ bool preparePolicy(nsjconf_t* nsjconf) {
} }
if (kafel_compile(ctxt, &nsjconf->seccomp_fprog) != 0) { if (kafel_compile(ctxt, &nsjconf->seccomp_fprog) != 0) {
LOG_E("Could not compile policy: %s", kafel_error_msg(ctxt)); LOG_W("Could not compile policy: %s", kafel_error_msg(ctxt));
kafel_ctxt_destroy(&ctxt); kafel_ctxt_destroy(&ctxt);
return false; return false;
} }