summaryrefslogtreecommitdiff
path: root/usr.sbin/bgpd
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2006-11-28 16:36:59 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2006-11-28 16:36:59 +0000
commitad9b38f7b39476f6dc3637954afe88c789eef783 (patch)
tree2818b774dea1c6c3551024b0fd805d53dfa33b2e /usr.sbin/bgpd
parentdf6c444ca915112f44b251baecc27b3332d211f4 (diff)
mib we pass to sysctl when fetching the routing table has 7 entries now,
not 6 any more (rtableid added). need to tell sysctl so.
Diffstat (limited to 'usr.sbin/bgpd')
-rw-r--r--usr.sbin/bgpd/kroute.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/bgpd/kroute.c b/usr.sbin/bgpd/kroute.c
index f32b6b3c0a6..a417f0f7e6b 100644
--- a/usr.sbin/bgpd/kroute.c
+++ b/usr.sbin/bgpd/kroute.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kroute.c,v 1.148 2006/11/16 15:54:49 henning Exp $ */
+/* $OpenBSD: kroute.c,v 1.149 2006/11/28 16:36:58 henning Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -1897,7 +1897,7 @@ fetchtable(void)
mib[5] = 0;
mib[6] = 0; /* rtableid */
- if (sysctl(mib, 6, NULL, &len, NULL, 0) == -1) {
+ if (sysctl(mib, 7, NULL, &len, NULL, 0) == -1) {
log_warn("sysctl");
return (-1);
}
@@ -1905,7 +1905,7 @@ fetchtable(void)
log_warn("fetchtable");
return (-1);
}
- if (sysctl(mib, 6, buf, &len, NULL, 0) == -1) {
+ if (sysctl(mib, 7, buf, &len, NULL, 0) == -1) {
log_warn("sysctl");
free(buf);
return (-1);