From: Adrian Reber Date: Fri, 6 Mar 2020 11:03:50 +0000 (+0100) Subject: unshare: fix help message indentation X-Git-Tag: v2.36-rc1~194^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6671501cfa2c49f201d3928d65dd538d3ef5c9cc;p=thirdparty%2Futil-linux.git unshare: fix help message indentation A few lines of the help message were unaligned in the output because of mixes use of tabs and space. This removes all tabs and replaces them with spaces. Signed-off-by: Adrian Reber --- diff --git a/sys-utils/unshare.c b/sys-utils/unshare.c index 8d33f22735..9b0a122a78 100644 --- a/sys-utils/unshare.c +++ b/sys-utils/unshare.c @@ -280,10 +280,10 @@ static void __attribute__((__noreturn__)) usage(void) fputs(_(" --setgroups allow|deny control the setgroups syscall in user namespaces\n"), out); fputs(_(" --keep-caps retain capabilities granted in user namespaces\n"), out); fputs(USAGE_SEPARATOR, out); - fputs(_(" -R, --root= run the command with root directory set to \n"), out); - fputs(_(" -w, --wd= change working directory to \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= run the command with root directory set to \n"), out); + fputs(_(" -w, --wd= change working directory to \n"), out); + fputs(_(" -S, --setuid set uid in entered namespace\n"), out); + fputs(_(" -G, --setgid set gid in entered namespace\n"), out); fputs(USAGE_SEPARATOR, out); printf(USAGE_HELP_OPTIONS(27));