Fix timezone abbreviation.

Issue: 1784

BSD manpage for strptime sez that they don't like
most timezone abbreviations. One they do like is GMT.
pull/1785/head
Joseph Rothrock 2015-02-27 15:37:39 -08:00
parent fffbcf3fbe
commit 06eac99c23
1 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,8 @@ _timestamp_to_time_string () {
fi
}
# Starting the test at "Jan 01 00:00:00 EDT 2000"
TIME=`_date_to_unix_timestamp "Jan 01 00:00:00 EDT 2000"`
# Starting the test at "Jan 01 00:00:00 GMT 2000"
TIME=`_date_to_unix_timestamp "Jan 01 00:00:00 GMT 2000"`
# Set defaults.