changeset 58:0e7d687a2322

Get timezone offsets right.
author Daniel O'Connor <darius@dons.net.au>
date Mon, 08 Apr 2013 23:10:25 +0930
parents adc9b1555f9d
children 488085e0c7e1
files syscalls.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/syscalls.c	Mon Apr 08 22:20:40 2013 +0930
+++ b/syscalls.c	Mon Apr 08 23:10:25 2013 +0930
@@ -169,8 +169,8 @@
  * Copied from http://www.sourceware.org/ml/newlib/2008/msg00311.html
  */
 static __tzinfo_type tzinfo = {0, 0, {
-	{'M',  4, 5, 0, 10800, (time_t)0, -37800L },
-	{'M', 10, 5, 0,  7200, (time_t)0, -34200L } 
+	{'M',  4, 5, 0, 10800, (time_t)0, -34200L },
+	{'M', 10, 5, 0,  7200, (time_t)0, -37800L } 
     }
 };
 #endif