Fix manpage and usage() to reflect that -a can be used in combination

with -o

Submitted by:	Ruslan Ermilov <ru@FreeBSD.org>
Pointed out by: Ceri Davies <ceri@submonkey.net
This commit is contained in:
Guido van Rooij 2004-01-29 14:42:26 +00:00
parent 4c57a8cabe
commit 6f7cdc55f1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=125197
2 changed files with 2 additions and 1 deletions

View File

@ -41,6 +41,7 @@
.Sh SYNOPSIS
.Nm
.Op Fl adfpruvw
.Op Fl o Ar options
.Op Fl F Ar fstab
.Op Fl t Ar ufs | external_type
.Nm

View File

@ -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] [ -F fstab] [-t ufs | external_type]",
" mount [-adfpruvw] [-o options] [ -F fstab] [-t ufs | external_type]",
" mount [-dfpruvw] special | node");
exit(1);
}