mirror of
https://github.com/golang/go
synced 2024-11-07 12:16:17 -07:00
time: correct comment of tzset
This commit is contained in:
parent
62616b1d56
commit
f6681eb44c
@ -264,12 +264,12 @@ func (l *Location) firstZoneUsed() bool {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// tzset takes a timezone string like the one found in the TZ environment
|
// tzset takes a timezone string like the one found in the TZ environment
|
||||||
// variable, the end of the last time zone transition expressed as seconds
|
// variable, the time of the last time zone transition expressed as seconds
|
||||||
// since January 1, 1970 00:00:00 UTC, and a time expressed the same way.
|
// since January 1, 1970 00:00:00 UTC, and a time expressed the same way.
|
||||||
// We call this a tzset string since in C the function tzset reads TZ.
|
// We call this a tzset string since in C the function tzset reads TZ.
|
||||||
// The return values are as for lookup, plus ok which reports whether the
|
// The return values are as for lookup, plus ok which reports whether the
|
||||||
// parse succeeded.
|
// parse succeeded.
|
||||||
func tzset(s string, initEnd, sec int64) (name string, offset int, start, end int64, isDST, ok bool) {
|
func tzset(s string, lastTxSec, sec int64) (name string, offset int, start, end int64, isDST, ok bool) {
|
||||||
var (
|
var (
|
||||||
stdName, dstName string
|
stdName, dstName string
|
||||||
stdOffset, dstOffset int
|
stdOffset, dstOffset int
|
||||||
@ -290,7 +290,7 @@ func tzset(s string, initEnd, sec int64) (name string, offset int, start, end in
|
|||||||
|
|
||||||
if len(s) == 0 || s[0] == ',' {
|
if len(s) == 0 || s[0] == ',' {
|
||||||
// No daylight savings time.
|
// No daylight savings time.
|
||||||
return stdName, stdOffset, initEnd, omega, false, true
|
return stdName, stdOffset, lastTxSec, omega, false, true
|
||||||
}
|
}
|
||||||
|
|
||||||
dstName, s, ok = tzsetName(s)
|
dstName, s, ok = tzsetName(s)
|
||||||
|
Loading…
Reference in New Issue
Block a user