From 15a133b6d1a3eab4faf6eb52a71fdc56bd65846f Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Wed, 5 Feb 2020 20:40:14 +0200 Subject: [PATCH] xz: Make it a fatal error if enabling the sandbox fails. Perhaps it's too drastic but on the other hand it will let me learn about possible problems if people report the errors. This won't be backported to the v5.2 branch. --- src/xz/file_io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xz/file_io.c b/src/xz/file_io.c index c12c6f57..e1a37d5f 100644 --- a/src/xz/file_io.c +++ b/src/xz/file_io.c @@ -221,7 +221,7 @@ io_sandbox_enter(int src_fd) return; error: - message(V_DEBUG, _("Failed to enable the sandbox")); + message_fatal(_("Failed to enable the sandbox")); } #endif // ENABLE_SANDBOX