diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-09-06 17:57:53 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-09-06 17:57:53 +0000 |
commit | b8b17701ae1d1bdb795c262d1ca780b389efadbf (patch) | |
tree | 4209cc3e0d8cd20ef89ade27fec95ab0a21b4d27 /posix/getopt.c | |
parent | ccd77b890b22a263476c7476bb60555829ee05bf (diff) | |
download | glibc-b8b17701ae1d1bdb795c262d1ca780b389efadbf.tar.gz glibc-b8b17701ae1d1bdb795c262d1ca780b389efadbf.tar.xz glibc-b8b17701ae1d1bdb795c262d1ca780b389efadbf.zip |
(_getopt_internal): Don't recognize an option name as ambiguous if it's a prefix for more than one name but the other struct option values are identical.
Diffstat (limited to 'posix/getopt.c')
-rw-r--r-- | posix/getopt.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/posix/getopt.c b/posix/getopt.c index f1add57292..2ad4ee961c 100644 --- a/posix/getopt.c +++ b/posix/getopt.c @@ -673,7 +673,9 @@ _getopt_internal (argc, argv, optstring, longopts, longind, long_only) pfound = p; indfound = option_index; } - else + else if (pfound->has_arg != p->has_arg + || pfound->flag != p->flag + || pfound->val != p->val) /* Second or later nonexact match found. */ ambig = 1; } |