]> sjero.net Git - wget/blobdiff - src/cmpt.c
[svn] Remove obsolete mail address.
[wget] / src / cmpt.c
index 19b56265ff7b9f283206f94575fea44d0966769a..e86286b024f435a9818f20fe1be5bf89565dd281 100644 (file)
@@ -1046,11 +1046,9 @@ const unsigned short int __mon_yday[2][13] =
    and given a prefix, but many systems out there are still (as of
    this writing in 2005) broken and we must cater to them.
 
-   Additionally, according to anecdotal evidence and conventional
-   wisdom I lack courage to challenge, many implementations of fnmatch
-   are notoriously buggy and unreliable.  So we use our version by
-   default, except when compiling under systems where fnmatch is known
-   to work (currently on GNU libc-based systems and Solaris.)  */
+   Additionally, according to some conventional, many historical
+   implementations of fnmatch are buggy and unreliable.  If yours is
+   such, undefine SYSTEM_FNMATCH in sysdep.h and tell us about it.  */
 
 #ifndef SYSTEM_FNMATCH
 
@@ -1224,8 +1222,8 @@ fnmatch (const char *pattern, const char *string, int flags)
 #endif /* not SYSTEM_FNMATCH */
 \f
 #ifndef HAVE_TIMEGM
-/* timegm is a GNU extension typically unavailable on non-glibc-based
-   platforms. */
+/* timegm is a GNU extension, but lately also available on *BSD and
+   possibly elsewhere. */
 
 /* Inverse of gmtime: converts struct tm to time_t, assuming the data
    in tm is UTC rather than local timezone.
@@ -1256,10 +1254,9 @@ fnmatch (const char *pattern, const char *string, int flags)
      mktime(tm+o) --> t+2o
      t+o - (t+2o - t+o) = t
 
-   Contributed by Roger Beeman <beeman@cisco.com>, with the help of
-   Mark Baushke <mdb@cisco.com> and other experts at CISCO.  Further
-   improved by Roger with assistance from Edward J. Sabol based on
-   input by Jamie Zawinski.  */
+   Contributed by Roger Beeman, with the help of Mark Baushke and
+   other experts at CISCO.  Further improved by Roger with assistance
+   from Edward J. Sabol based on input by Jamie Zawinski.  */
 
 time_t
 timegm (struct tm *t)