]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
unshare: fix help message indentation
authorAdrian Reber <areber@redhat.com>
Fri, 6 Mar 2020 11:03:50 +0000 (12:03 +0100)
committerAdrian Reber <areber@redhat.com>
Sun, 8 Mar 2020 18:02:00 +0000 (19:02 +0100)
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 <areber@redhat.com>
sys-utils/unshare.c

index 8d33f2273524657fe4f48da4765f80ca34098e0a..9b0a122a7879d1dbf8822bbcb2afb3cfc32e47f2 100644 (file)
@@ -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=<dir>          run the command with root directory set to <dir>\n"), out);
-       fputs(_(" -w, --wd=<dir>            change working directory to <dir>\n"), out);
-       fputs(_(" -S, --setuid <uid>        set uid in entered namespace\n"), out);
-       fputs(_(" -G, --setgid <gid>        set gid in entered namespace\n"), out);
+       fputs(_(" -R, --root=<dir>          run the command with root directory set to <dir>\n"), out);
+       fputs(_(" -w, --wd=<dir>            change working directory to <dir>\n"), out);
+       fputs(_(" -S, --setuid <uid>        set uid in entered namespace\n"), out);
+       fputs(_(" -G, --setgid <gid>        set gid in entered namespace\n"), out);
 
        fputs(USAGE_SEPARATOR, out);
        printf(USAGE_HELP_OPTIONS(27));