Commits
Robert Shaw authored 0fe9e835425
1 + | --- cvsgraph.c.orig Mon Sep 13 16:27:17 2004 |
2 + | +++ cvsgraph.c Mon Sep 13 16:40:48 2004 |
3 + | @@ -1045,7 +1045,11 @@ |
4 + | tm.tm_mon--; |
5 + | if(tm.tm_year > 1900) |
6 + | tm.tm_year -= 1900; |
7 + | +#ifdef __APPLE__ |
8 + | + t = timegm(&tm); |
9 + | +#else |
10 + | t = mktime(&tm) - timezone; |
11 + | +#endif |
12 + | if(n != 6 || t == (time_t)(-1)) |
13 + | { |
14 + | add_string_str("<invalid date>"); |