diff --git a/conf/confbase.Y b/conf/confbase.Y index 2343536a..f9293a40 100644 --- a/conf/confbase.Y +++ b/conf/confbase.Y @@ -30,6 +30,7 @@ CF_DECLS struct filter *f; struct f_tree *e; struct f_val v; + struct password_item *p; } %token END @@ -38,7 +39,7 @@ CF_DECLS %token SYM %token TEXT -%type expr bool pxlen +%type expr bool pxlen datetime %nonassoc '=' '<' '>' '~' ELSE IF '.' %left '+' '-' @@ -108,6 +109,10 @@ pxlen: } ; +datetime: /* Return seconds from epoch, FIXME we want be more user friendly */ + NUM { $$ = $1; } + ; + CF_CODE CF_END