From 4f13e49d2a0ceef88867d0fec03413bf4be6c14c Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Tue, 22 Nov 2016 16:09:34 +0100 Subject: [PATCH] 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 --- src/lib/elementary/elm_config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elementary/elm_config.c b/src/lib/elementary/elm_config.c index 513a1546fa..bc3c25d55c 100644 --- a/src/lib/elementary/elm_config.c +++ b/src/lib/elementary/elm_config.c @@ -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;