Skip to content

Commit

Permalink
[PATCH] Fix strange timezone handling
Browse files Browse the repository at this point in the history
We generate the ASCII representation of our internal date representation
("seconds since 1970, UTC + timezone information") in two different
places.

One of them uses the stupid and obvious way to make sure that it gets the
sexagecimal representation right for negative timezones even if they might
not be exact hours, and the other one depends on the modulus operator
always matching the sign of argument.

Hey, the clever one works. And C90 even specifies that behaviour. But I
had to think about it for a while when I was re-visiting this area, and
even if I didn't have to, it's kind of strange to have two different ways
to print out the same data format.

So use a common helper for this. And select the stupid and straighforward
way.

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Linus Torvalds authored and Junio C Hamano committed Sep 22, 2005
1 parent acfadcf commit 01c6ad2
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions date.c
Original file line number Diff line number Diff line change
Expand Up @@ -386,12 +386,23 @@ static int match_tz(const char *date, int *offp)
return end - date;
}

static int date_string(unsigned long date, int offset, char *buf, int len)
{
int sign = '+';

if (offset < 0) {
offset = -offset;
sign = '-';
}
return snprintf(buf, len, "%lu %c%02d%02d", date, sign, offset / 60, offset % 60);
}

/* Gr. strptime is crap for this; it doesn't have a way to require RFC2822
(i.e. English) day/month names, and it doesn't work correctly with %z. */
int parse_date(const char *date, char *result, int maxlen)
{
struct tm tm;
int offset, sign, tm_gmt;
int offset, tm_gmt;
time_t then;

memset(&tm, 0, sizeof(tm));
Expand Down Expand Up @@ -435,14 +446,7 @@ int parse_date(const char *date, char *result, int maxlen)

if (!tm_gmt)
then -= offset * 60;

sign = '+';
if (offset < 0) {
offset = -offset;
sign = '-';
}

return snprintf(result, maxlen, "%lu %c%02d%02d", then, sign, offset/60, offset % 60);
return date_string(then, offset, result, maxlen);
}

void datestamp(char *buf, int bufsize)
Expand All @@ -455,5 +459,5 @@ void datestamp(char *buf, int bufsize)
offset = my_mktime(localtime(&now)) - now;
offset /= 60;

snprintf(buf, bufsize, "%lu %+05d", now, offset/60*100 + offset%60);
date_string(now, offset, buf, bufsize);
}

0 comments on commit 01c6ad2

Please sign in to comment.