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:
Andrey A. Chernov 2004-02-17 00:53:50 +00:00
parent aba638209b
commit 0bd7aa5188
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=125904

View File

@ -129,6 +129,10 @@ parse_args (argc, argv)
warn_not_std = TRUE;
break;
case 0:
/* long options */
break;
default:
usage(argv[0]);
exit (1);