1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] Doc fix.

This commit is contained in:
hniksic 2005-07-06 12:50:26 -07:00
parent 097695b723
commit f29eafcca7

View File

@ -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. */