From a6ad3659424bd25a5dd08915b8913e24501f2410 Mon Sep 17 00:00:00 2001 From: Jooyung Han Date: Mon, 3 Jul 2023 15:49:09 +0900 Subject: [PATCH] Fix GLOBALS() for nsenter When -C was added in d0c52934a39a5795af12bbf904a093306e38981e, the number for the arguments were not modified. -t argument is not set correctly. Change-Id: I17f448c5d29b1cafb1a1e5226025eaa96cdbb92d --- toys/other/nsenter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toys/other/nsenter.c b/toys/other/nsenter.c index 104ea1ee..bafed479 100644 --- a/toys/other/nsenter.c +++ b/toys/other/nsenter.c @@ -77,7 +77,7 @@ config NSENTER #define setns(fd, nstype) syscall(SYS_setns, fd, nstype) GLOBALS( - char *UupnmiC[6]; + char *UupnmiC[7]; long t; ) -- 2.39.2