Commit Graph
3 Commits
Author SHA1 Message Date
Samuel HollandandRich Felker 6f03b61b46 getopt_long: accept prefix match of long options containing equals signs
Consider the first equals sign found in the option to be the delimiter
between it and its argument, even if it matches an equals sign in the
option name. This avoids consuming the equals sign, which would prevent
finding the argument. Instead, it forces a partial match of the part of
the option name before the equals sign.

Maintainer's note: GNU getopt_long does not explicitly document this
behavior, but it can be seen as a consequence of how partial matches
are specified, and at least GNU (bfd) ld is known to make use of it.
2018-01-31 22:04:50 -05:00
Samuel HollandandRich Felker f1abc29bd0 fix getopt_long arguments to partial matches
If we find a partial option name match, we need to keep looking for
ambiguous/conflicting options. However, we need to remember the position
in the candidate argument to find its option-argument later, if there is
one. This fixes e.g. option "foobar" being given as "--fooba=baz".
2018-01-31 22:02:49 -05:00
Samuel HollandandRich Felker 81f4a1200a fix fchown fallback on arches without chown(2)
The flags argument was missing, causing uninitalized data to be passed
to fchownat(2). The correct value of flags should match the fallback for
chown(3).
2017-05-27 22:04:12 -04:00