1
1
mirror of https://github.com/tstack/lnav.git synced 2024-10-26 13:16:11 +03:00

[ptime] need to clear the zone from the base when using a custom time format

This commit is contained in:
Timothy Stack 2016-11-04 11:00:51 -07:00
parent b296e84a65
commit 4c0a8d0376

View File

@ -572,6 +572,11 @@ const char *date_time_scanner::scan(const char *time_dest,
else {
off_t off = 0;
#ifdef HAVE_STRUCT_TM_TM_ZONE
if (!this->dts_keep_base_tz) {
tm_out->et_tm.tm_zone = NULL;
}
#endif
if (ptime_fmt(time_fmt[curr_time_fmt], tm_out, time_dest, off, time_len)) {
retval = &time_dest[off];
if (tm_out->et_tm.tm_year < 70) {