diff options
author | Nicolas Pitre <nico@cam.org> | 2005-05-18 17:11:07 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-18 14:23:04 -0700 |
commit | fbab835c03f1c73e4de920d00cd26519506d33fe (patch) | |
tree | ea3352de6c58ce31cc99d4996b090d6dae0b20c8 /date.c | |
parent | 850e82d889f374465dc7aa6cb4af3098c7e02f1f (diff) | |
download | git-fbab835c03f1c73e4de920d00cd26519506d33fe.tar.gz |
[PATCH] fix show_date() for positive timezones
Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'date.c')
-rw-r--r-- | date.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -51,9 +51,9 @@ const char *show_date(unsigned long time, int tz) int minutes; minutes = tz < 0 ? -tz : tz; - minutes = (tz / 100)*60 + (tz % 100); + minutes = (minutes / 100)*60 + (minutes % 100); minutes = tz < 0 ? -minutes : minutes; - t = time - minutes * 60; + t = time + minutes * 60; tm = gmtime(&t); if (!tm) return NULL; |