summaryrefslogtreecommitdiffstats
path: root/nest/config.Y
diff options
context:
space:
mode:
Diffstat (limited to 'nest/config.Y')
-rw-r--r--nest/config.Y11
1 files changed, 6 insertions, 5 deletions
diff --git a/nest/config.Y b/nest/config.Y
index c13a6ae..b0634a6 100644
--- a/nest/config.Y
+++ b/nest/config.Y
@@ -146,15 +146,16 @@ password_begin:
password_items:
/* empty */ { }
- | FROM datetime ';' password_items { last_password_item->from = $2; }
- | TO datetime ';' password_items { last_password_item->to = $2; }
- | ID NUM ';' password_items { last_password_item->id = $2; }
+ | FROM datetime password_items { last_password_item->from = $2; }
+ | TO datetime password_items { last_password_item->to = $2; }
+ | ID NUM password_items { last_password_item->id = $2; }
;
password_list:
/* empty */ { $$ = NULL; }
- | '{' password_begin ';' password_items '}' password_list {
- last_password_item->next = $6;
+ | password_begin password_items ';' password_list {
+ last_password_item->next = $4;
+ $$ = last_password_item;
}
;