From: Benno Schulenberg Date: Mon, 22 Sep 2014 20:15:40 +0000 (+0200) Subject: textual: there may be no space between option and optional =arg X-Git-Tag: v2.26-rc1~434 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=42f00a7df509ed7837c0177830ed71f134bc3e15;p=thirdparty%2Futil-linux.git textual: there may be no space between option and optional =arg Signed-off-by: Benno Schulenberg --- diff --git a/sys-utils/nsenter.c b/sys-utils/nsenter.c index 7da44e707c..c54d63f9d5 100644 --- a/sys-utils/nsenter.c +++ b/sys-utils/nsenter.c @@ -67,16 +67,16 @@ static void usage(int status) fputs(USAGE_OPTIONS, out); fputs(_(" -t, --target target process to get namespaces from\n"), out); - fputs(_(" -m, --mount [=] enter mount namespace\n"), out); - fputs(_(" -u, --uts [=] enter UTS namespace (hostname etc)\n"), out); - fputs(_(" -i, --ipc [=] enter System V IPC namespace\n"), out); - fputs(_(" -n, --net [=] enter network namespace\n"), out); - fputs(_(" -p, --pid [=] enter pid namespace\n"), out); - fputs(_(" -U, --user [=] enter user namespace\n"), out); + fputs(_(" -m, --mount[=] enter mount namespace\n"), out); + fputs(_(" -u, --uts[=] enter UTS namespace (hostname etc)\n"), out); + fputs(_(" -i, --ipc[=] enter System V IPC namespace\n"), out); + fputs(_(" -n, --net[=] enter network namespace\n"), out); + fputs(_(" -p, --pid[=] enter pid namespace\n"), out); + fputs(_(" -U, --user[=] enter user namespace\n"), out); fputs(_(" -S, --setuid set uid in entered namespace\n"), out); fputs(_(" -G, --setgid set gid in entered namespace\n"), out); - fputs(_(" -r, --root [=] set the root directory\n"), out); - fputs(_(" -w, --wd [=] set the working directory\n"), out); + fputs(_(" -r, --root[=] set the root directory\n"), out); + fputs(_(" -w, --wd[=] set the working directory\n"), out); fputs(_(" -F, --no-fork do not fork before exec'ing \n"), out); fputs(USAGE_SEPARATOR, out);