]> sjero.net Git - wget/commitdiff
[svn] Doc fix.
authorhniksic <devnull@localhost>
Sat, 7 May 2005 17:11:29 +0000 (10:11 -0700)
committerhniksic <devnull@localhost>
Sat, 7 May 2005 17:11:29 +0000 (10:11 -0700)
src/http.c

index 33482a2a2455a0c276568e32e859820bc35b8f28..2add14a6c1d1834fab7192e89b6b76ae05e66ae8 100644 (file)
@@ -2651,13 +2651,12 @@ http_atotm (const char *time_string)
         to prevent garbage from the stack influencing strptime.  */
       xzero (t);
 
-      /* Note that Solaris strptime fails to recognize English month
-        names under non-English locales.  We work around this by not
-        setting the LC_TIME category.  Another way would be to
-        temporarily set locale to C before invoking strptime, but
-        that's slow and messy.  GNU strptime does not have this
-        problem because it recognizes English names along with the
-        local ones.  */
+      /* Solaris strptime fails to recognize English month names in
+        non-English locales, which we work around by not setting the
+        LC_TIME category.  Another way would be to temporarily set
+        locale to C before invoking strptime, but that's slow and
+        messy.  GNU strptime does not have this problem because it
+        recognizes English month names along with the local ones.  */
 
       if (check_end (strptime (time_string, time_formats[i], &t)))
        return mktime_from_utc (&t);