diff options
-rw-r--r-- | usr.sbin/bgpctl/irr_parser.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/bgpctl/irr_parser.c b/usr.sbin/bgpctl/irr_parser.c index b707e97e39c..0c21209d518 100644 --- a/usr.sbin/bgpctl/irr_parser.c +++ b/usr.sbin/bgpctl/irr_parser.c @@ -1,4 +1,4 @@ -/* $OpenBSD: irr_parser.c,v 1.12 2015/01/16 06:40:15 deraadt Exp $ */ +/* $OpenBSD: irr_parser.c,v 1.13 2015/04/25 13:23:01 phessler Exp $ */ /* * Copyright (c) 2007 Henning Brauer <henning@openbsd.org> @@ -244,6 +244,8 @@ parse_policy(char *key, char *val) nextst = PO_PEER_KEY; else if (!strcmp(tok, "at")) nextst = PO_RTR_KEY; + else if (!strcmp(tok, "action")) + nextst = PO_ACTION_KEY; else if (!strcmp(tok, "announce")) nextst = PO_FILTER_KEY; } |