From: Christian Goeschel Ndjomouo Date: Thu, 25 Dec 2025 04:45:20 +0000 (-0500) Subject: namei: ignore SELinux-specific long option in CI CHECK X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aadc7d15c04c15bae3ba8c92c349a5c252909bf8;p=thirdparty%2Futil-linux.git namei: ignore SELinux-specific long option in CI CHECK Signed-off-by: Christian Goeschel Ndjomouo --- diff --git a/misc-utils/namei.c b/misc-utils/namei.c index 768ae00d7..d3898e564 100644 --- a/misc-utils/namei.c +++ b/misc-utils/namei.c @@ -390,7 +390,7 @@ static const struct option longopts[] = { "nosymlinks", no_argument, NULL, 'n' }, { "vertical", no_argument, NULL, 'v' }, #ifdef HAVE_LIBSELINUX - { "context", no_argument, NULL, 'Z' }, + { "context", no_argument, NULL, 'Z' }, /* IGNORECHECK=yes */ #endif { NULL, 0, NULL, 0 }, };