From f29eafcca7a8dfb4fa596591f0d9db2586bc2319 Mon Sep 17 00:00:00 2001 From: hniksic Date: Wed, 6 Jul 2005 12:50:26 -0700 Subject: [PATCH] [svn] Doc fix. --- src/utils.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/utils.c b/src/utils.c index 991aaf4b..1340daa1 100644 --- a/src/utils.c +++ b/src/utils.c @@ -621,6 +621,8 @@ int fnmatch_nocase (const char *pattern, const char *string, int flags) { #ifdef FNM_CASEFOLD + /* The FNM_CASEFOLD flag started as a GNU extension, but it is now + also present on *BSD platforms, and possibly elsewhere. */ return fnmatch (pattern, string, flags | FNM_CASEFOLD); #else /* Turn PATTERN and STRING to lower case and call fnmatch on them. */ -- 2.39.2