From: hniksic Date: Wed, 6 Jul 2005 19:50:26 +0000 (-0700) Subject: [svn] Doc fix. X-Git-Tag: v1.13~782 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=f29eafcca7a8dfb4fa596591f0d9db2586bc2319 [svn] Doc fix. --- 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. */