diff options
author | Guido van Rooij <guido@FreeBSD.org> | 2004-01-29 15:14:03 +0000 |
---|---|---|
committer | Guido van Rooij <guido@FreeBSD.org> | 2004-01-29 15:14:03 +0000 |
commit | c14d21f6cf21c2cb6969081ada02235efc7373ca (patch) | |
tree | cfa59f76cbe2d11c3b3931b65a546a711b8a51ad /sbin/mount | |
parent | f279a36c6e8699314c5258ffeed903aa5f2e5df3 (diff) | |
download | src-c14d21f6cf21c2cb6969081ada02235efc7373ca.tar.gz src-c14d21f6cf21c2cb6969081ada02235efc7373ca.zip |
Style(9) option sorting
Submitted by: Ruslan Ermilov <ru@FreeBSD.org>
Notes
Notes:
svn path=/head/; revision=125200
Diffstat (limited to 'sbin/mount')
-rw-r--r-- | sbin/mount/mount.8 | 2 | ||||
-rw-r--r-- | sbin/mount/mount.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sbin/mount/mount.8 b/sbin/mount/mount.8 index 7aac5dbbbd98..04782b3bb18a 100644 --- a/sbin/mount/mount.8 +++ b/sbin/mount/mount.8 @@ -41,8 +41,8 @@ .Sh SYNOPSIS .Nm .Op Fl adfpruvw -.Op Fl o Ar options .Op Fl F Ar fstab +.Op Fl o Ar options .Op Fl t Ar ufs | external_type .Nm .Op Fl dfpruvw diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c index 3780925a375e..e96878653833 100644 --- a/sbin/mount/mount.c +++ b/sbin/mount/mount.c @@ -706,7 +706,7 @@ usage() (void)fprintf(stderr, "%s\n%s\n%s\n", "usage: mount [-dfpruvw] [-o options] [-t ufs | external_type] special node", -" mount [-adfpruvw] [-o options] [ -F fstab] [-t ufs | external_type]", +" mount [-adfpruvw] [ -F fstab] [-o options] [-t ufs | external_type]", " mount [-dfpruvw] special | node"); exit(1); } |