From acb97e611501c92cc176b2ca130ffab00cb6299d Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Sun, 11 Dec 2011 17:22:59 +0000 Subject: 29991: allow explicit "d" for days in time qualifiers --- Src/glob.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Src/glob.c') diff --git a/Src/glob.c b/Src/glob.c index 96c00dedb..076d0392a 100644 --- a/Src/glob.c +++ b/Src/glob.c @@ -1530,6 +1530,8 @@ zglob(LinkList list, LinkNode np, int nountok) g_units = TT_MONTHS, ++s; else if (*s == 's') g_units = TT_SECONDS, ++s; + else if (*s == 'd') + ++s; } /* See if it's greater than, equal to, or less than */ if ((g_range = *s == '+' ? 1 : *s == '-' ? -1 : 0)) -- cgit 1.4.1