summaryrefslogtreecommitdiff
path: root/fc-match/fc-match.c
diff options
context:
space:
mode:
authorPatrick Lam <plam@MIT.EDU>2005-11-23 15:32:36 +0000
committerPatrick Lam <plam@MIT.EDU>2005-11-23 15:32:36 +0000
commit435fc66073ee83d17242bac2880e843489439cda (patch)
tree397768463cd749e45dc24b71f2635835c137bcff /fc-match/fc-match.c
parentadac22f290f1780f6d1424d6f93cc4453d4d489c (diff)
2005-11-23 Frederic Crozat <fcrozat@mandriva.com>: reviewed by: plam
Make getopt_long accept -s parameter to fc-match as well.
Diffstat (limited to 'fc-match/fc-match.c')
-rw-r--r--fc-match/fc-match.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fc-match/fc-match.c b/fc-match/fc-match.c
index 2a79722..3ddba74 100644
--- a/fc-match/fc-match.c
+++ b/fc-match/fc-match.c
@@ -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