public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug argparse/28081] New: getopt_long doesn't return error on ambigouos option
@ 2021-07-12 15:55 mlichvar at redhat dot com
  2021-07-12 16:01 ` [Bug argparse/28081] getopt_long doesn't return error on ambiguous option mlichvar at redhat dot com
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: mlichvar at redhat dot com @ 2021-07-12 15:55 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=28081

            Bug ID: 28081
           Summary: getopt_long doesn't return error on ambigouos option
           Product: glibc
           Version: unspecified
            Status: NEW
          Severity: normal
          Priority: P2
         Component: argparse
          Assignee: unassigned at sourceware dot org
          Reporter: mlichvar at redhat dot com
  Target Milestone: ---

An option which partially matches multiple getopt long options doesn't produce
an error.

Reproducer:
#include <stdio.h>
#include <getopt.h>

int main(void) {
        const char *argv[] = {"a", "--f", "b", NULL };
        int index, c;

        static struct option long_options[] = {
                {"foobar", required_argument, 0, 0},
                {"foobaz", required_argument, 0, 0},
                {0, 0, 0, 0}
        };

        c = getopt_long(3, (char **)argv, "", long_options, &index);

        printf("c=%d index=%d\n", c, index);
}

Actual result:
c=0 index=0

Expected result:
option '--f' is ambiguous; possibilities: '--foobar' '--foobaz'
c=63 index=0

More information:
It seems this doesn't happen when the two options are different in the
required_argument vs no_argument setting.

Observed on Fedora 34 using glibc-2.33-16.fc34.x86_64.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-07-19  7:48 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-12 15:55 [Bug argparse/28081] New: getopt_long doesn't return error on ambigouos option mlichvar at redhat dot com
2021-07-12 16:01 ` [Bug argparse/28081] getopt_long doesn't return error on ambiguous option mlichvar at redhat dot com
2021-07-12 16:12 ` schwab@linux-m68k.org
2021-07-12 16:15 ` mlichvar at redhat dot com
2021-07-12 17:56 ` schwab@linux-m68k.org
2021-07-13  7:34 ` mlichvar at redhat dot com
2021-07-19  7:48 ` mlichvar at redhat dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).