Merge pull request #2889 from Aire-One/fix_awesome_commandline_screen_parameter

Allow `getopt_long` call to manage the `-m` option (short of `--screen`)
This commit is contained in:
mergify[bot] 2019-09-30 23:18:31 +00:00 committed by GitHub
commit afe337c468
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -621,7 +621,7 @@ main(int argc, char **argv)
setlocale(LC_CTYPE, ""); setlocale(LC_CTYPE, "");
/* check args */ /* check args */
while((opt = getopt_long(argc, argv, "vhkc:ar", while((opt = getopt_long(argc, argv, "vhkc:arm:",
long_options, NULL)) != -1) long_options, NULL)) != -1)
switch(opt) switch(opt)
{ {