diff options
author | Andreas Schwab <schwab@suse.de> | 2008-07-18 17:37:41 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-07-18 17:51:58 +0200 |
commit | 9a221e27f55ca81f74088c8def4721de8723ea7b (patch) | |
tree | 57d5b89c466eef5f6cfda8a14d59b68aaf4b82a8 /src | |
parent | 4e6af688466fba93881fca2bf4b0c8cf2b04162d (diff) | |
download | coreutils-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.c | 6 |
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); |