Skip to content
  • dionoea's avatar
    Fix indentation. · d50656d8
    dionoea authored
    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)
    d50656d8