Date: Fri, 8 Aug 2025 04:36:00 GMT From: Kyle Evans <kevans@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: bd21c672a868 - main - jail.h: fix the build Message-ID: <202508080436.5784a0vf022951@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by kevans: URL: https://cgit.FreeBSD.org/src/commit/?id=bd21c672a868f039edb109b73757ad560252ca0f commit bd21c672a868f039edb109b73757ad560252ca0f Author: Kyle Evans <kevans@FreeBSD.org> AuthorDate: 2025-08-08 04:34:42 +0000 Commit: Kyle Evans <kevans@FreeBSD.org> CommitDate: 2025-08-08 04:34:42 +0000 jail.h: fix the build A local change that fixed this got lost somewhere; unbreak the build. Pointy hat: kevans Fixes: 8a5ceebece0 ("kern: disallow user scheduling/ [...]") --- sys/sys/jail.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/jail.h b/sys/sys/jail.h index 0ad80ec53157..d2655c52e832 100644 --- a/sys/sys/jail.h +++ b/sys/sys/jail.h @@ -270,7 +270,7 @@ struct prison_racct { */ #define PR_ALLOW_ALL_STATIC 0x007f87ff #define PR_ALLOW_PRISON0 \ - (PR_ALLOW_ALL_STATIC & ~(PR_ALLOW_UNPRIV_PARENT_TAMPERING)) + (PR_ALLOW_ALL_STATIC & ~(PR_ALLOW_UNPRIV_PARENT_TAMPER)) /* * PR_ALLOW_DIFFERENCES determines which flags are able to be
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202508080436.5784a0vf022951>