Commit 43e47101 by Ian Lance Taylor

time: Look for zoneinfo files in Solaris directory.

From-SVN: r169380
parent c9610865
......@@ -18,6 +18,7 @@ import (
const (
headerSize = 4 + 16 + 4*7
zoneDir = "/usr/share/zoneinfo/"
zoneDir2 = "/usr/share/lib/zoneinfo/"
)
// Simple I/O interface to binary blob of data.
......@@ -216,7 +217,11 @@ func setupZone() {
case err == os.ENOENV:
zones, _ = readinfofile("/etc/localtime")
case len(tz) > 0:
zones, _ = readinfofile(zoneDir + tz)
var ok bool
zones, ok = readinfofile(zoneDir + tz)
if !ok {
zones, _ = readinfofile(zoneDir2 + tz)
}
case len(tz) == 0:
// do nothing: use UTC
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment