Handle case of options that aren't processed individually

This commit is contained in:
Eric Fischer 2016-03-28 15:10:04 -07:00
parent edce0f088d
commit 448d1a124e

View File

@ -2168,6 +2168,9 @@ int main(int argc, char **argv) {
while ((i = getopt_long(argc, argv, "n:l:z:Z:B:d:D:m:o:x:y:r:b:t:g:p:a:XfFqvP", long_options, NULL)) != -1) {
switch (i) {
case 0:
break;
case 'n':
name = optarg;
break;