mirror of
https://review.haiku-os.org/haiku
synced 2025-02-07 14:25:58 +01:00
ICUTimeConversion: Remove special casing in _FillTmValues for GMT.
This basically reverts the changes in this function back to before 5b4d5ef89794bc57bcc0a0647af53d66ba0f6ee8. As c686c2216cbe49683cdfe81b878748252ab9eb0e is left intact, #19047 is still fixed regardless.
This commit is contained in:
parent
48d27198d0
commit
3ac3785347
@ -253,11 +253,7 @@ ICUTimeConversion::_FillTmValues(const TimeZone* icuTimeZone,
|
||||
if (!U_SUCCESS(icuStatus))
|
||||
return B_ERROR;
|
||||
|
||||
if (tmOut->tm_gmtoff == 0)
|
||||
tmOut->tm_zone = (char*)"GMT";
|
||||
else
|
||||
tmOut->tm_zone = fDataBridge->addrOfTZName[tmOut->tm_isdst ? 1 : 0];
|
||||
|
||||
tmOut->tm_zone = fDataBridge->addrOfTZName[tmOut->tm_isdst ? 1 : 0];
|
||||
return B_OK;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user