Skip to content

Commit 4b272f3

Browse files
authored
Merge pull request #2347 from drodriguez/time-zone-find-abbreviations
Look for abbreviations when creating time zones.
2 parents 34bf289 + 89ff2e6 commit 4b272f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CoreFoundation/NumberDate.subproj/CFTimeZone.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ static CFTimeZoneRef __CFTimeZoneCreateSystem(void) {
889889
}
890890
#endif
891891
if (name) {
892-
result = CFTimeZoneCreateWithName(kCFAllocatorSystemDefault, name, false);
892+
result = CFTimeZoneCreateWithName(kCFAllocatorSystemDefault, name, true);
893893
CFRelease(name);
894894
if (result) return result;
895895
}

0 commit comments

Comments
 (0)