Browse Source

Fix from Jon Nelson for error in timezone
-Erik

Eric Andersen 23 years ago
parent
commit
a10cb1d4a3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libc/misc/time/tm_conv.c

+ 1 - 1
libc/misc/time/tm_conv.c

@@ -95,7 +95,7 @@ time_t offset;
 	register int y;
 	register const unsigned short int *ip;
 
-	timezone = offset;
+	timezone = -offset;
 
 	days = *t / SECS_PER_DAY;
 	rem = *t % SECS_PER_DAY;