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:
Patrick Lam 2005-11-23 15:32:36 +00:00
parent adac22f290
commit 435fc66073
2 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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