diff options
Diffstat (limited to 'ext/date/lib/timelib.c')
| -rw-r--r-- | ext/date/lib/timelib.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/date/lib/timelib.c b/ext/date/lib/timelib.c index 00868a2c03..61cc55ab78 100644 --- a/ext/date/lib/timelib.c +++ b/ext/date/lib/timelib.c @@ -242,6 +242,12 @@ void timelib_dump_date(timelib_time *d, int options) case TIMELIB_SPECIAL_WEEKDAY: printf(" / %lld weekday", d->relative.special.amount); break; + case TIMELIB_SPECIAL_DAY_OF_WEEK_IN_MONTH: + printf(" / x y of z month"); + break; + case TIMELIB_SPECIAL_LAST_DAY_OF_WEEK_IN_MONTH: + printf(" / last y of z month"); + break; } } } |
