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:33:48 +00:00
parent 246985e40e
commit b1297aa897
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-10-05 Christian Biesinger <cbiesinger@web.de>
reviewed by: plam & keithp

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