summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lam <plam@MIT.EDU>2005-11-23 15:33:48 +0000
committerPatrick Lam <plam@MIT.EDU>2005-11-23 15:33:48 +0000
commitb1297aa8977901075e95e40bc430fc823e1fb230 (patch)
tree65d3fe0c29469114bdcf2d8d26ac512a7c78895d
parent246985e40e3296a6bb427026d8274fe8409f3776 (diff)
downloadfontconfig-b1297aa8977901075e95e40bc430fc823e1fb230.tar.gz
2005-11-23 Frederic Crozat <fcrozat@mandriva.com>: reviewed by: plam
Make getopt_long accept -s parameter to fc-match as well.
-rw-r--r--ChangeLog7
-rw-r--r--fc-match/fc-match.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0c3215f..3cf5aa6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
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