From 64e9f3a4ef61b53f72d0c9cf03da109e43b6700e Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Mon, 1 Mar 2021 16:05:46 -0800 Subject: [PATCH] procd: fix compilation with newer musl An open bracket was missing. Signed-off-by: Rosen Penev --- jail/jail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jail/jail.c b/jail/jail.c index 378a729..ce4f50c 100644 --- a/jail/jail.c +++ b/jail/jail.c @@ -2804,7 +2804,7 @@ static void post_main(struct uloop_timeout *t) close(pidns_fd); } #ifdef CLONE_NEWTIME - if (timens_fd != -1) + if (timens_fd != -1) { setns(timens_fd, CLONE_NEWTIME); close(timens_fd); } -- 2.30.2