Reported-by: Felix Abecassis <fabecassis@nvidia.com>
Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
nr = seccomp_syscall_resolve_name(line);
if (nr == __NR_SCMP_ERROR) {
WARN("Failed to resolve syscall \"%s\"", line);
- WARN("This syscall will NOT be blacklisted");
+ WARN("This syscall will NOT be handled by seccomp");
return true;
}
if (nr < 0) {
WARN("Got negative return value %d for syscall \"%s\"", nr, line);
- WARN("This syscall will NOT be blacklisted");
+ WARN("This syscall will NOT be handled by seccomp");
return true;
}