mirror of https://git.tukaani.org/xz.git
CMake: Fix sabotaged Landlock sandbox check.
It never enabled it.
(cherry picked from commit f9cf4c05ed
)
This commit is contained in:
parent
5f178c364c
commit
78ab47d65d
|
@ -1001,7 +1001,7 @@ if(NOT SANDBOX_FOUND AND ENABLE_SANDBOX MATCHES "^ON$|^landlock$")
|
||||||
#include <linux/landlock.h>
|
#include <linux/landlock.h>
|
||||||
#include <sys/syscall.h>
|
#include <sys/syscall.h>
|
||||||
#include <sys/prctl.h>
|
#include <sys/prctl.h>
|
||||||
.
|
|
||||||
void my_sandbox(void)
|
void my_sandbox(void)
|
||||||
{
|
{
|
||||||
(void)prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0);
|
(void)prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0);
|
||||||
|
|
Loading…
Reference in New Issue