From: phessler Date: Sat, 25 Apr 2015 13:23:01 +0000 (+0000) Subject: handle an IRR record of "export ... action X" the same way we handle X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=b76c38a16cdde378bde5fcafbc08d7d26d4a5e18;p=openbsd handle an IRR record of "export ... action X" the same way we handle "import ... action X". OK benno@ henning@ --- 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 @@ -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; }