Fixed bug #45543: DateTime::setTimezone can not set timezones without ID.

This commit is contained in:
Derick Rethans 2014-01-26 13:58:13 +01:00
parent 4e308abf28
commit 22dba2f5f3
6 changed files with 84 additions and 12 deletions

View file

@ -172,6 +172,12 @@ typedef struct timelib_time {
* 2 TimeZone abbreviation */
} timelib_time;
typedef struct timelib_abbr_info {
timelib_sll utc_offset;
char *abbr;
int dst;
} timelib_abbr_info;
typedef struct timelib_error_message {
int position;
char character;