mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Doc fix.
This commit is contained in:
parent
097695b723
commit
f29eafcca7
@ -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. */
|
||||
|
Loading…
Reference in New Issue
Block a user