]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
textual: angular brackets around a non-literal argument, singular
authorBenno Schulenberg <bensberg@justemail.net>
Mon, 22 Sep 2014 20:15:39 +0000 (22:15 +0200)
committerKarel Zak <kzak@redhat.com>
Wed, 1 Oct 2014 07:37:10 +0000 (09:37 +0200)
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
sys-utils/nsenter.c
sys-utils/setpriv.c
sys-utils/unshare.c

index 87c654939204d965c0e47d6903814f72b6356f35..7da44e707c266e190af96276f8464d53fda69c5b 100644 (file)
@@ -62,7 +62,7 @@ static void usage(int status)
        FILE *out = status == EXIT_SUCCESS ? stdout : stderr;
 
        fputs(USAGE_HEADER, out);
-       fprintf(out, _(" %s [options] <program> [args...]\n"),
+       fprintf(out, _(" %s [options] <program> [<argument>...]\n"),
                program_invocation_short_name);
 
        fputs(USAGE_OPTIONS, out);
index ccfa99333d6e8979702d135868f7560037d774c5..06d9fe4299643e8727a41e833bac91704577d79e 100644 (file)
@@ -90,7 +90,9 @@ struct privctx {
 static void __attribute__((__noreturn__)) usage(FILE *out)
 {
        fputs(USAGE_HEADER, out);
-       fprintf(out, _(" %s [options] <program> [args...]\n"), program_invocation_short_name);
+       fprintf(out, _(" %s [options] <program> [<argument>...]\n"),
+               program_invocation_short_name);
+
        fputs(USAGE_OPTIONS, out);
        fputs(_(" -d, --dump               show current state (and do not exec anything)\n"), out);
        fputs(_(" --nnp, --no-new-privs    disallow granting new privileges\n"), out);
@@ -108,6 +110,7 @@ static void __attribute__((__noreturn__)) usage(FILE *out)
        fputs(_(" --securebits <bits>      set securebits\n"), out);
        fputs(_(" --selinux-label <label>  set SELinux label\n"), out);
        fputs(_(" --apparmor-profile <pr>  set AppArmor profile\n"), out);
+
        fputs(USAGE_SEPARATOR, out);
        fputs(USAGE_HELP, out);
        fputs(USAGE_VERSION, out);
index 95e4afbd055e6af2d502acd0a1e3771834253f09..933f621524a439ae0b0febb98d7ccebb2e1840c5 100644 (file)
@@ -60,8 +60,8 @@ static void usage(int status)
        FILE *out = status == EXIT_SUCCESS ? stdout : stderr;
 
        fputs(USAGE_HEADER, out);
-       fprintf(out,
-             _(" %s [options] <program> [args...]\n"), program_invocation_short_name);
+       fprintf(out, _(" %s [options] <program> [<argument>...]\n"),
+               program_invocation_short_name);
 
        fputs(USAGE_OPTIONS, out);
        fputs(_(" -m, --mount               unshare mounts namespace\n"), out);