--- BasiliskII/src/Unix/timer_unix.cpp 1999/10/15 14:50:39 1.3 +++ BasiliskII/src/Unix/timer_unix.cpp 1999/10/15 15:06:55 1.4 @@ -57,7 +57,7 @@ uint32 TimerDateTime(void) time_t utc_now = time(NULL); #if defined(__linux__) || defined(__SVR4) long tz = timezone; - time_t local_now = uct_now - tz; + time_t local_now = utc_now - tz; if (daylight) local_now += 3600; #elif defined(__FreeBSD__) || defined(__NetBSD__)