summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2009-06-05 20:46:44 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2009-06-05 20:46:44 +0000
commit39ed73224f88a6e467c05fd53a47a2006b00b862 (patch)
tree8579344ffbcdb4654d457019460f01094290c144 /usr.sbin
parent3be738b7e06c753d430cba7c3b07f8e1bcf25cfd (diff)
Don't call the main RIB DEFAULT but Loc-RIB. Makes more sense.
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/bgpd/parse.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/parse.y b/usr.sbin/bgpd/parse.y
index 95de187bc97..d02bd0e709f 100644
--- a/usr.sbin/bgpd/parse.y
+++ b/usr.sbin/bgpd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.228 2009/06/05 19:52:32 claudio Exp $ */
+/* $OpenBSD: parse.y,v 1.229 2009/06/05 20:46:43 claudio Exp $ */
/*
* Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -2297,7 +2297,7 @@ parse_config(char *filename, struct bgpd_config *xconf,
TAILQ_INIT(xfilter_l);
add_rib("Adj-RIB-In", 1);
- add_rib("DEFAULT", 0);
+ add_rib("Loc-RIB", 0);
yyparse();
errors = file->errors;