From 6f1acb30c1e30c6470092953ac75e665c4ba6bfb Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 1 Jun 2003 18:07:34 +0000 Subject: Update. * test-skeleton.c (main): Request getopt to not reorder the command line. --- test-skeleton.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test-skeleton.c') diff --git a/test-skeleton.c b/test-skeleton.c index 24f8fb8eed..64297fa988 100644 --- a/test-skeleton.c +++ b/test-skeleton.c @@ -1,5 +1,5 @@ /* Skeleton for test programs. - Copyright (C) 1998, 2000, 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. @@ -184,7 +184,7 @@ main (int argc, char *argv[]) setbuf (stdout, NULL); #endif - while ((opt = getopt_long (argc, argv, "", options, NULL)) != -1) + while ((opt = getopt_long (argc, argv, "+", options, NULL)) != -1) switch (opt) { case '?': -- cgit v1.2.3