diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-11-01 14:31:23 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-11-01 14:31:23 -0400 |
commit | 52357565c61a5d2c4f4da693caae852a4d90b111 (patch) | |
tree | 62481a87a013f3d058a8f3e6ce6acf23b8e7cb5b | |
parent | libsandbox: do not use ptrace if it returns ENOSYS (diff) | |
download | sandbox-52357565c61a5d2c4f4da693caae852a4d90b111.tar.gz sandbox-52357565c61a5d2c4f4da693caae852a4d90b111.tar.bz2 sandbox-52357565c61a5d2c4f4da693caae852a4d90b111.zip |
sandbox: include "sandbox" in the error log summary
This should make it a little more clear that this summary is coming
from the sandbox and not somewhere else.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r-- | src/sandbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sandbox.c b/src/sandbox.c index 7d6b03f..3d43446 100644 --- a/src/sandbox.c +++ b/src/sandbox.c @@ -114,7 +114,7 @@ static void print_sandbox_log(char *sandbox_log) return; } - sb_eerror("--------------------------- ACCESS VIOLATION SUMMARY ---------------------------\n"); + sb_eerror("----------------------- SANDBOX ACCESS VIOLATION SUMMARY -----------------------\n"); sb_eerror("LOG FILE: \"%s\"\n", sandbox_log); while (1) { |