mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Default to not -v.
Fix usage() style bug spotted by BDE.
This commit is contained in:
parent
bdf423572e
commit
a082153a1f
1 changed files with 2 additions and 2 deletions
|
|
@ -75,7 +75,7 @@ main(argc, argv)
|
|||
|
||||
set = NULL;
|
||||
omode = 0;
|
||||
Hflag = Lflag = Pflag = Rflag = fflag = hflag = 0;
|
||||
Hflag = Lflag = Pflag = Rflag = fflag = hflag = vflag = 0;
|
||||
while ((ch = getopt(argc, argv, "HLPRXfgorstuvwx")) != -1)
|
||||
switch (ch) {
|
||||
case 'H':
|
||||
|
|
@ -210,6 +210,6 @@ void
|
|||
usage()
|
||||
{
|
||||
(void)fprintf(stderr,
|
||||
"usage: chmod [-f -R [-H | -L | -P] -v] mode file ...\n");
|
||||
"usage: chmod [-fv] [-R [-H | -L | -P]] mode file ...\n");
|
||||
exit(1);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue