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
246985e40e
commit
b1297aa897
|
@ -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
|
||||
|
||||
|
|
|
@ -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