Added missing option for getopt

The --language short option -N did not work and the errmsg.sys file
was always searched for in the wrong place.
This commit is contained in:
Markus Makela 2016-01-28 18:52:46 +02:00
parent 379004a2a4
commit 74281401d8

View File

@ -1079,7 +1079,7 @@ int main(int argc, char **argv)
}
}
while ((opt = getopt_long(argc, argv, "dc:f:l:vVs:S:?L:D:C:B:U:A:P:G:",
while ((opt = getopt_long(argc, argv, "dc:f:l:vVs:S:?L:D:C:B:U:A:P:G:N:",
long_options, &option_index)) != -1)
{
bool succp = true;