summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2008-07-18 17:37:41 +0200
committerJim Meyering <meyering@redhat.com>2008-07-18 17:51:58 +0200
commit9a221e27f55ca81f74088c8def4721de8723ea7b (patch)
tree57d5b89c466eef5f6cfda8a14d59b68aaf4b82a8 /src
parent4e6af688466fba93881fca2bf4b0c8cf2b04162d (diff)
downloadcoreutils-9a221e27f55ca81f74088c8def4721de8723ea7b.tar.xz
mknod: correct misplaced -Z description in --help output
* src/mknod.c (usage): Put it after the "Mandatory arguments..." line.
Diffstat (limited to 'src')
-rw-r--r--src/mknod.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mknod.c b/src/mknod.c
index d93e2cb9d..f4028e94d 100644
--- a/src/mknod.c
+++ b/src/mknod.c
@@ -56,12 +56,12 @@ usage (int status)
Create the special file NAME of the given TYPE.\n\
\n\
"), stdout);
- fputs(_("\
- -Z, --context=CTX set the SELinux security context of NAME to CTX\n\
-"), stdout);
fputs (_("\
Mandatory arguments to long options are mandatory for short options too.\n\
"), stdout);
+ fputs(_("\
+ -Z, --context=CTX set the SELinux security context of NAME to CTX\n\
+"), stdout);
fputs (_("\
-m, --mode=MODE set file permission bits to MODE, not a=rw - umask\n\
"), stdout);