summaryrefslogtreecommitdiff
path: root/src/basic/calendarspec.c
diff options
context:
space:
mode:
authorDouglas Christman <DouglasChristman@gmail.com>2016-11-24 11:50:06 -0500
committerDouglas Christman <DouglasChristman@gmail.com>2016-11-24 18:22:08 -0500
commit408a51e15614ca0c6cd80558adb20efe448d16d8 (patch)
tree124a98ab99eeb4ecac3b86cebc23190af8762f63 /src/basic/calendarspec.c
parent28d329571aaeebda140122167cd48755637400b2 (diff)
calendarspec: always interpret a missing time as 00:00:00
"*-*-*" is now equivalent to "*-*-* 00:00:00" (daily) rather than "*-*-* *:*:*" (every second).
Diffstat (limited to 'src/basic/calendarspec.c')
-rw-r--r--src/basic/calendarspec.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/basic/calendarspec.c b/src/basic/calendarspec.c
index 359bb16cae..db11e55390 100644
--- a/src/basic/calendarspec.c
+++ b/src/basic/calendarspec.c
@@ -699,14 +699,9 @@ static int parse_calendar_time(const char **p, CalendarSpec *c) {
t = *p;
- if (*t == 0) {
- /* If no time is specified at all, but a date of some
- * kind, then this means 00:00:00 */
- if (c->day || c->weekdays_bits > 0)
- goto null_hour;
-
- goto finish;
- }
+ /* If no time is specified at all, then this means 00:00:00 */
+ if (*t == 0)
+ goto null_hour;
r = parse_chain(&t, false, &h);
if (r < 0)