diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2006-11-28 16:36:59 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2006-11-28 16:36:59 +0000 |
commit | ad9b38f7b39476f6dc3637954afe88c789eef783 (patch) | |
tree | 2818b774dea1c6c3551024b0fd805d53dfa33b2e /usr.sbin/ospfd | |
parent | df6c444ca915112f44b251baecc27b3332d211f4 (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/ospfd')
-rw-r--r-- | usr.sbin/ospfd/kroute.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ospfd/kroute.c b/usr.sbin/ospfd/kroute.c index a33f91688f1..cb74def38fc 100644 --- a/usr.sbin/ospfd/kroute.c +++ b/usr.sbin/ospfd/kroute.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kroute.c,v 1.35 2006/11/17 08:55:31 claudio Exp $ */ +/* $OpenBSD: kroute.c,v 1.36 2006/11/28 16:36:58 henning Exp $ */ /* * Copyright (c) 2004 Esben Norby <norby@openbsd.org> @@ -812,7 +812,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); } @@ -820,7 +820,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); |