2005-11-23 Frederic Crozat <fcrozat@mandriva.com>: reviewed by: plam
Make getopt_long accept -s parameter to fc-match as well.
This commit is contained in:
parent
adac22f290
commit
435fc66073
|
@ -1,3 +1,10 @@
|
|||
2005-11-23 Frederic Crozat <fcrozat@mandriva.com>:
|
||||
reviewed by: plam
|
||||
|
||||
* fc-match/fc-match.c (main):
|
||||
|
||||
Make getopt_long accept -s parameter to fc-match as well.
|
||||
|
||||
2005-11-21 Dirk Mueller <dmueller@suse.com>
|
||||
reviewed by: plam
|
||||
|
||||
|
|
|
@ -99,7 +99,7 @@ main (int argc, char **argv)
|
|||
int c;
|
||||
|
||||
#if HAVE_GETOPT_LONG
|
||||
while ((c = getopt_long (argc, argv, "Vv?", longopts, NULL)) != -1)
|
||||
while ((c = getopt_long (argc, argv, "sVv?", longopts, NULL)) != -1)
|
||||
#else
|
||||
while ((c = getopt (argc, argv, "sVv?")) != -1)
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue