From: Rosen Penev Date: Tue, 2 Mar 2021 00:05:46 +0000 (-0800) Subject: procd: fix compilation with newer musl X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=64e9f3a4ef61b53f72d0c9cf03da109e43b6700e;p=project%2Fprocd.git procd: fix compilation with newer musl An open bracket was missing. Signed-off-by: Rosen Penev --- 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); }