mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-02 08:42:48 +00:00
getopt_long() returned 0 (i.e. long options) case not handled, add it
(symptom: "bc --quiet" not works while "bc -q" works)
This commit is contained in:
parent
aba638209b
commit
0bd7aa5188
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=125904
@ -129,6 +129,10 @@ parse_args (argc, argv)
|
||||
warn_not_std = TRUE;
|
||||
break;
|
||||
|
||||
case 0:
|
||||
/* long options */
|
||||
break;
|
||||
|
||||
default:
|
||||
usage(argv[0]);
|
||||
exit (1);
|
||||
|
Loading…
Reference in New Issue
Block a user