]> sjero.net Git - wget/commitdiff
[svn] Doc fix.
authorhniksic <devnull@localhost>
Wed, 6 Jul 2005 19:50:26 +0000 (12:50 -0700)
committerhniksic <devnull@localhost>
Wed, 6 Jul 2005 19:50:26 +0000 (12:50 -0700)
src/utils.c

index 991aaf4befa4fd6735646d627016df736eb06384..1340daa19cd0809ef3799afb3f262984101cb726 100644 (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. */