Descriptiob: get TZ from /etc/timezone (like in Debian) Index: b/usr/src/lib/libc/port/gen/localtime.c =================================================================== --- a/usr/src/lib/libc/port/gen/localtime.c +++ b/usr/src/lib/libc/port/gen/localtime.c @@ -120,8 +120,8 @@ /* JAN_01_1902 cast to (int) - negative number of seconds from 1970 */ #define JAN_01_1902 (int)0x8017E880 #define LEN_TZDIR (sizeof (TZDIR) - 1) -#define TIMEZONE "/etc/default/init" -#define TZSTRING "TZ=" +#define TIMEZONE "/etc/timezone" +#define TZSTRING "" #define HASHTABLE 31 #define LEAPS_THRU_END_OF(y) ((y) / 4 - (y) / 100 + (y) / 400)