diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-09-30 22:10:51 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-09-30 22:10:51 +0000 |
commit | bbc21ea3427fc0e9cd249002065c1328876fa699 (patch) | |
tree | f937bc6cefb6d6b0233fe93817f629f40b5bebdb /sys/arch/i386 | |
parent | e9e698545240ef4fcd5c34db4b7110d42c3e0ff3 (diff) |
fix sysctl() call. This code was never tested was it
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/stand/installboot/installboot.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/stand/installboot/installboot.c b/sys/arch/i386/stand/installboot/installboot.c index e45551725a5..30ef480a723 100644 --- a/sys/arch/i386/stand/installboot/installboot.c +++ b/sys/arch/i386/stand/installboot/installboot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: installboot.c,v 1.14 1997/09/30 21:59:43 millert Exp $ */ +/* $OpenBSD: installboot.c,v 1.15 1997/09/30 22:10:50 deraadt Exp $ */ /* $NetBSD: installboot.c,v 1.5 1995/11/17 23:23:50 gwr Exp $ */ /* @@ -142,7 +142,7 @@ main(argc, argv) size = sizeof(int); if ((nheads == -1 || nsectors == -1) && - sysctl(mib, 2, &biosdev, &size, NULL, 0) != -1) { + sysctl(mib, 3, &biosdev, &size, NULL, 0) != -1) { if (biosdev & 0x80) { int geo; @@ -150,7 +150,7 @@ main(argc, argv) mib[2] = BIOS_GEOMETRY; size = sizeof(int); - if (sysctl(mib, 2, &geo, &size, NULL, 0) == -1) + if (sysctl(mib, 3, &geo, &size, NULL, 0) == -1) err(1, "sysctl"); if (nheads == -1) |