Handle -l option by ignoring it

This commit is contained in:
Jari Vetoniemi 2014-04-13 01:26:53 +03:00
parent fc6539c101
commit 83d67f80c0

View File

@ -91,7 +91,7 @@ static void parseArgs(int *argc, char **argv[])
* or parse them before running getopt.. */
for (;;) {
int opt = getopt_long(*argc, *argv, "hviw:I:p:Ibf:m", opts, NULL);
int opt = getopt_long(*argc, *argv, "hviw:l:I:p:Ibf:m", opts, NULL);
if (opt < 0)
break;