Follow-up Comment #6, bug #60952 (project gnustep): [comment #1 comment #1:] > The new code is now in the git repository; please give it a try and update this issue to let me know how you got on with it.
Not yes tested, but I note this bug: version = header->tzh_version[0]; Now version is either '\0' (for version 1), '2' or '3' if (1 == version) That will always be false. If you want version to be the version as an int, you could write: version = header->tzh_version[0] ? header->tzh_version[0] - 0x30 : 1; _______________________________________________________ Reply to this item at: <https://savannah.gnu.org/bugs/?60952> _______________________________________________ Message sent via Savannah https://savannah.gnu.org/