From: Lasse Collin Date: Wed, 5 Feb 2020 18:40:14 +0000 (+0200) Subject: xz: Make it a fatal error if enabling the sandbox fails. X-Git-Tag: v5.3.2alpha~88 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=15a133b6d1a3eab4faf6eb52a71fdc56bd65846f;p=thirdparty%2Fxz.git 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. --- 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