summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorphessler <phessler@openbsd.org>2015-04-25 13:23:01 +0000
committerphessler <phessler@openbsd.org>2015-04-25 13:23:01 +0000
commitb76c38a16cdde378bde5fcafbc08d7d26d4a5e18 (patch)
treeaa815174e10f662348ff3df3d35ab5f1ddad2209
parentAdd quirk for Cirrus Logic CS4208 which is needed for MacBookAir6,1. (diff)
downloadwireguard-openbsd-b76c38a16cdde378bde5fcafbc08d7d26d4a5e18.tar.xz
wireguard-openbsd-b76c38a16cdde378bde5fcafbc08d7d26d4a5e18.zip
handle an IRR record of "export ... action X" the same way we handle
"import ... action X". OK benno@ henning@
-rw-r--r--usr.sbin/bgpctl/irr_parser.c4
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;
}