You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
468 B
14 lines
468 B
--- src/date.c.orig Tue Aug 1 15:15:54 2000 |
|
+++ src/date.c Mon Feb 19 12:20:57 2001 |
|
@@ -193,9 +193,9 @@ |
|
return 0; |
|
if (offset) { |
|
if (abs (offset) > 15) |
|
- result -= timezone + (offset / 100) * 60 * 60 + (offset % 100) * 60; |
|
+ result -= /* timezone + */ (offset / 100) * 60 * 60 + (offset % 100) * 60; |
|
else |
|
- result -= timezone + offset * 60 * 60; |
|
+ result -= /* timezone + */ offset * 60 * 60; |
|
} |
|
chomp (r); |
|
if (result_str)
|
|
|