calendar: support 'yearly' and 'annually' names the same way as cron

This commit is contained in:
Lennart Poettering 2013-11-19 01:13:42 +01:00
parent 8e64fd110d
commit 135168183e
1 changed files with 17 additions and 0 deletions

View File

@ -686,6 +686,23 @@ int calendar_spec_from_string(const char *p, CalendarSpec **spec) {
if (r < 0)
goto fail;
} else if (strcaseeq(p, "anually") || strcaseeq(p, "yearly")) {
r = const_chain(1, &c->month);
if (r < 0)
goto fail;
r = const_chain(1, &c->day);
if (r < 0)
goto fail;
r = const_chain(0, &c->hour);
if (r < 0)
goto fail;
r = const_chain(0, &c->minute);
if (r < 0)
goto fail;
r = const_chain(0, &c->second);
if (r < 0)
goto fail;
} else if (strcaseeq(p, "weekly")) {
c->weekdays_bits = 1;