elm_config: set default year for minimal to 1970

This aligns with the docs we have and also makes sense when taking UNIX time
in consideration.

Fixes T4617
This commit is contained in:
Stefan Schmidt 2016-11-22 16:09:34 +01:00
parent fa8630a9b1
commit 4f13e49d2a
1 changed files with 1 additions and 1 deletions

View File

@ -1805,7 +1805,7 @@ _config_load(void)
_elm_config->week_start = 1; /* monday */
_elm_config->weekend_start = 6; /* saturday */
_elm_config->weekend_len = 2;
_elm_config->year_min = 2;
_elm_config->year_min = 70;
_elm_config->year_max = 137;
_elm_config->softcursor_mode = 0; /* 0 = auto, 1 = on, 2 = off */
_elm_config->color_palette = NULL;