diff options
Diffstat (limited to 'usr.sbin/bgpd/parse.y')
-rw-r--r-- | usr.sbin/bgpd/parse.y | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/usr.sbin/bgpd/parse.y b/usr.sbin/bgpd/parse.y index 1d9c7ee23c0..966aa7c1e57 100644 --- a/usr.sbin/bgpd/parse.y +++ b/usr.sbin/bgpd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.251 2010/04/26 08:46:31 claudio Exp $ */ +/* $OpenBSD: parse.y,v 1.252 2010/04/28 13:07:48 claudio Exp $ */ /* * Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -1402,6 +1402,12 @@ filter_as : as4number { fatal(NULL); $$->a.as = $1; } + | NEIGHBORAS { + if (($$ = calloc(1, sizeof(struct filter_as_l))) == + NULL) + fatal(NULL); + $$->a.flags = AS_FLAG_NEIGHBORAS; + } ; filter_match_h : /* empty */ { |