Give a meaning to DATE_FORMATS
It's a bit weird to consider DATE_FORMATS as part of the date input format enum, all the more so as it does not even represent the number of available formats (since those are numbered from 1). Turn DATE_FORMATS into the number of available date input formats. Signed-off-by: Baptiste Jonglez <baptiste--git@jonglez.org> Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
committed by
Lukas Fleischer
parent
7eb3abb08a
commit
9e1185f526
@@ -243,7 +243,7 @@ static int config_parse_output_datefmt(void *dummy, const char *val)
|
||||
static int config_parse_input_datefmt(void *dummy, const char *val)
|
||||
{
|
||||
if (config_parse_int(&conf.input_datefmt, val)) {
|
||||
if (conf.input_datefmt <= 0 || conf.input_datefmt >= DATE_FORMATS)
|
||||
if (conf.input_datefmt <= 0 || conf.input_datefmt > DATE_FORMATS)
|
||||
conf.input_datefmt = 1;
|
||||
return 1;
|
||||
} else
|
||||
|
||||
Reference in New Issue
Block a user