summaryrefslogtreecommitdiff
path: root/usr.sbin/ripd/kroute.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/ripd/kroute.c')
-rw-r--r--usr.sbin/ripd/kroute.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ripd/kroute.c b/usr.sbin/ripd/kroute.c
index 1b01d456519..f333186697c 100644
--- a/usr.sbin/ripd/kroute.c
+++ b/usr.sbin/ripd/kroute.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kroute.c,v 1.3 2006/11/16 15:56:26 henning Exp $ */
+/* $OpenBSD: kroute.c,v 1.4 2006/11/28 16:36:58 henning Exp $ */
/*
* Copyright (c) 2004 Esben Norby <norby@openbsd.org>
@@ -789,7 +789,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);
}
@@ -797,7 +797,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);