diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2009-07-20 14:56:21 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2009-07-20 14:56:21 +0000 |
commit | ee862f72ddbaf46e7ee152665ad00cf82bd4235f (patch) | |
tree | 3ccacd3582233f356b50638ba8e2a16355d65cfd /usr.sbin/bgpd/parse.y | |
parent | de754320eae7f4eca95291122bc1ca6909793641 (diff) |
Flag added RIBs as F_RIB_NOFIB | F_RIB_NOEVALUATE in the no-eval case even
though F_RIB_NOEVALUATE implicitly includes F_RIB_NOFIB.
Diffstat (limited to 'usr.sbin/bgpd/parse.y')
-rw-r--r-- | usr.sbin/bgpd/parse.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/parse.y b/usr.sbin/bgpd/parse.y index 175a9a02fb9..714782bfad3 100644 --- a/usr.sbin/bgpd/parse.y +++ b/usr.sbin/bgpd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.231 2009/06/06 01:10:29 claudio Exp $ */ +/* $OpenBSD: parse.y,v 1.232 2009/07/20 14:56:20 claudio Exp $ */ /* * Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -397,7 +397,7 @@ conf_main : AS as4number { free($3); YYERROR; } - if (!add_rib($3, F_RIB_NOEVALUATE)) { + if (!add_rib($3, F_RIB_NOFIB | F_RIB_NOEVALUATE)) { free($3); YYERROR; } |