From: Aleksi Hannula Date: Tue, 7 Apr 2026 11:52:16 +0000 (+0300) Subject: nsenter: Fix AT_HANDLE_FID on musl X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5452239f6e69d2d3aaa427d2d2253247cfb7cb7b;p=thirdparty%2Futil-linux.git nsenter: Fix AT_HANDLE_FID on musl Signed-off-by: Aleksi Hannula --- diff --git a/sys-utils/nsenter.c b/sys-utils/nsenter.c index e10ba9cf9..98507958c 100644 --- a/sys-utils/nsenter.c +++ b/sys-utils/nsenter.c @@ -29,6 +29,9 @@ #ifdef HAVE_LINUX_NSFS_H # include #endif +#ifndef AT_HANDLE_FID +# define AT_HANDLE_FID 0x200 +#endif #ifndef NS_GET_USERNS # define NS_GET_USERNS _IO(0xb7, 0x1) #endif