Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/newlib
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2001-09-14 00:40:49 +0400
committerJeff Johnston <jjohnstn@redhat.com>2001-09-14 00:40:49 +0400
commit6342caa4e633abbbd5d8ddac58e637341b4d57fb (patch)
tree281c0293b153ecd0e4735375d9ff7a343db9f9f3 /newlib
parent3900c377d8d9235617544f22f0da59bd0abd2714 (diff)
Thu Sep 13 08:49:49 2001 Jason Tishler <jason@tishler.net>
* strftime.c (strftime): Fix "%W" implementation to properly handle Mondays too.
Diffstat (limited to 'newlib')
-rw-r--r--newlib/ChangeLog5
-rw-r--r--newlib/libc/time/strftime.c5
2 files changed, 8 insertions, 2 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index 3e8d67ce7..32168565e 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,8 @@
+Thu Sep 13 08:49:49 2001 Jason Tishler <jason@tishler.net>
+
+ * strftime.c (strftime): Fix "%W" implementation to properly handle
+ Mondays too.
+
2001-09-07 Jeff Law <law@redhat.com>
* libc/sys/h8300hms/crt0.S: For H8/300H and H8/S, load address of
diff --git a/newlib/libc/time/strftime.c b/newlib/libc/time/strftime.c
index 1e6154f12..1b44e1db9 100644
--- a/newlib/libc/time/strftime.c
+++ b/newlib/libc/time/strftime.c
@@ -362,9 +362,10 @@ _DEFUN (strftime, (s, maxsize, format, tim_p),
case 'W':
if (count < maxsize - 2)
{
+ int wday = (tim_p->tm_wday) ? tim_p->tm_wday - 1 : 6;
sprintf (&s[count], "%2.2d",
- (tim_p->tm_yday + ((8 -
- tim_p->tm_wday) % 7)) / 7);
+ (tim_p->tm_yday + 7 -
+ wday) / 7);
count += 2;
}
else