mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 09:38:11 +00:00
LibC: Revert localtime_r to use time zone information set by tzset
Now that tzset actually detects time zones, parties interested in time zone offsets should invoke tzset.
This commit is contained in:
parent
11f1f04a4c
commit
cd0e5ccd3f
1 changed files with 1 additions and 7 deletions
|
@ -162,13 +162,7 @@ struct tm* localtime_r(const time_t* t, struct tm* tm)
|
||||||
if (!t)
|
if (!t)
|
||||||
return nullptr;
|
return nullptr;
|
||||||
|
|
||||||
auto time_zone = TimeZone::current_time_zone();
|
time_to_tm(tm, *t - timezone);
|
||||||
auto time = AK::Time::from_seconds(*t);
|
|
||||||
|
|
||||||
if (auto offset = TimeZone::get_time_zone_offset(time_zone, time); offset.has_value())
|
|
||||||
time += AK::Time::from_seconds(offset->seconds);
|
|
||||||
|
|
||||||
time_to_tm(tm, time.to_seconds());
|
|
||||||
return tm;
|
return tm;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue