summaryrefslogtreecommitdiff
path: root/sbin/sysctl
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1997-10-03 20:58:07 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1997-10-03 20:58:07 +0000
commit98b9a977f2fc904beaf85348bbc87bbaa7569d7c (patch)
treec81a7150f3df069bd1c1e9d17fd2e0734c3702a8 /sbin/sysctl
parentaaffa9428f7ad9e839b95f08cc7d3b64f48eaeb9 (diff)
avoid sign extension on bios geometry!
Diffstat (limited to 'sbin/sysctl')
-rw-r--r--sbin/sysctl/sysctl.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sbin/sysctl/sysctl.c b/sbin/sysctl/sysctl.c
index afdf2562be7..6ea3bf1c17c 100644
--- a/sbin/sysctl/sysctl.c
+++ b/sbin/sysctl/sysctl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sysctl.c,v 1.26 1997/09/21 23:02:03 mickey Exp $ */
+/* $OpenBSD: sysctl.c,v 1.27 1997/10/03 20:58:04 deraadt Exp $ */
/* $NetBSD: sysctl.c,v 1.9 1995/09/30 07:12:50 thorpej Exp $ */
/*
@@ -44,7 +44,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)sysctl.c 8.1 (Berkeley) 6/6/93";
#else
-static char *rcsid = "$OpenBSD: sysctl.c,v 1.26 1997/09/21 23:02:03 mickey Exp $";
+static char *rcsid = "$OpenBSD: sysctl.c,v 1.27 1997/10/03 20:58:04 deraadt Exp $";
#endif
#endif /* not lint */
@@ -502,12 +502,12 @@ parse(string, flags)
}
#ifdef CPU_BIOS
if (special & BIOSGEO) {
- int geo = *(int *)buf;
+ u_int geo = *(int *)buf;
if (!nflag)
(void)printf("%s = ", string);
- (void) printf("spt = %d, tpc = %d\n",
- BIOSNSECTS(geo), BIOSNHEADS(geo));
+ printf("Cylinders=%d Tracks=%d Sectors=%d %08x\n",
+ BIOSNTRACKS(geo), BIOSNHEADS(geo), BIOSNSECTS(geo), geo);
return;
}
if (special & BIOSDEV) {