From 6d8da6cd9f2cac0787c955999539ea8854340be5 Mon Sep 17 00:00:00 2001 From: handa Date: Thu, 17 Feb 2005 12:46:28 +0000 Subject: [PATCH] (filter): Accept extentions ".ttc" and ".TTC". --- example/otflist.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/example/otflist.c b/example/otflist.c index 200ab1e..bcd0e5c 100644 --- a/example/otflist.c +++ b/example/otflist.c @@ -119,6 +119,8 @@ filter (const struct dirent *direntry) return (len >= 5 && (! strncmp (ext, ".ttf", 4) || ! strncmp (ext, ".TTF", 4) + || ! strncmp (ext, ".ttc", 4) + || ! strncmp (ext, ".TTC", 4) || ! strncmp (ext, ".otf", 4) || ! strncmp (ext, ".OTF", 4) || ! strncmp (ext, ".PFA", 4) -- 1.7.10.4