From: Sami Kerola Date: Tue, 22 Jan 2013 23:27:01 +0000 (+0000) Subject: nsenter: make usage() translator friendly X-Git-Tag: v2.23-rc1~290 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=26f879edf53503db81739d7b27720e57fabedf18;p=thirdparty%2Futil-linux.git nsenter: make usage() translator friendly Signed-off-by: Sami Kerola --- diff --git a/sys-utils/nsenter.c b/sys-utils/nsenter.c index 926eb6227c..b6e6dc1a48 100644 --- a/sys-utils/nsenter.c +++ b/sys-utils/nsenter.c @@ -64,16 +64,17 @@ static void usage(int status) program_invocation_short_name); fputs(USAGE_OPTIONS, out); - fputs(_(" -t, --target target process to get namespaces from\n" - " -m, --mount [=] enter mount namespace\n" - " -u, --uts [=] enter UTS namespace (hostname etc)\n" - " -i, --ipc [=] enter System V IPC namespace\n" - " -n, --net [=] enter network namespace\n" - " -p, --pid [=] enter pid namespace\n" - " -U, --user [=] enter user namespace\n" - " -r, --root [=] set the root directory\n" - " -w, --wd [=] set the working directory\n" - " -F, --no-fork don't fork before exec'ing \n"), 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(_(" -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); fputs(USAGE_HELP, out); fputs(USAGE_VERSION, out);