]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(my_strftime): Fix typo in octal number introduced in last change.
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 14 Sep 2005 06:58:08 +0000 (06:58 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 14 Sep 2005 06:58:08 +0000 (06:58 +0000)
lib/strftime.c

index e884ea8b8e996253102d4bbe159b39b147e1f164..16342da8c4190ba753ead1e99d2d1063a5b61777 100644 (file)
@@ -1372,7 +1372,7 @@ my_strftime (CHAR_T *s, size_t maxsize, const CHAR_T *format,
                DO_TZ_OFFSET (6, diff < 0, 04, hour_diff * 100 + min_diff);
 
              case 2: tz_hh_mm_ss: /* +hh:mm:ss */
-               DO_TZ_OFFSET (9, diff < 0, 044,
+               DO_TZ_OFFSET (9, diff < 0, 024,
                              hour_diff * 10000 + min_diff * 100 + sec_diff);
 
              case 3: /* +hh if possible, else +hh:mm, else +hh:mm:ss */