Commit d50656d8 authored by Antoine Cellerier's avatar Antoine Cellerier

Fix indentation.

I was actually trying to understand why command line option parsing on my computer with self compiled VLC behaves as "If the first character of optstring is '+' or the environment variable POSIXLY_CORRECT is set, then option processing stops as soon as a non-option argument is encountered." while neither of these conditions is true (see the while( getopt_long( ... ) != EOF ) loop).
Small illustration:
./vlc -vvv -I dummy input.ts --color
All options before the first non option argument work as expected (-vvv and -I dummy). All options after the first non option argument are also interpreted as being non option arguments.
Help would be appreciated.
(I've already had reports of other people having the same kind of issues)
parent 94ad23ae
...@@ -1593,10 +1593,10 @@ int __config_LoadCmdLine( vlc_object_t *p_this, int *pi_argc, char *ppsz_argv[], ...@@ -1593,10 +1593,10 @@ int __config_LoadCmdLine( vlc_object_t *p_this, int *pi_argc, char *ppsz_argv[],
config_PutInt( p_this, psz_name, !flag ); config_PutInt( p_this, psz_name, !flag );
break; break;
} }
continue; continue;
} }
} }
/* A short option has been recognized */ /* A short option has been recognized */
if( pp_shortopts[i_cmd] != NULL ) if( pp_shortopts[i_cmd] != NULL )
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment