summaryrefslogtreecommitdiff
path: root/usr.sbin/sysctl
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1997-10-03 21:15:20 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1997-10-03 21:15:20 +0000
commitf133aa3e054e25bcda4b78257f92324175e88346 (patch)
tree7fbb169b1fedfb6ef35e272d84093257fe05bab5 /usr.sbin/sysctl
parent98b9a977f2fc904beaf85348bbc87bbaa7569d7c (diff)
put real geo field in ()
Diffstat (limited to 'usr.sbin/sysctl')
-rw-r--r--usr.sbin/sysctl/sysctl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/sysctl/sysctl.c b/usr.sbin/sysctl/sysctl.c
index 6ea3bf1c17c..4841cecd466 100644
--- a/usr.sbin/sysctl/sysctl.c
+++ b/usr.sbin/sysctl/sysctl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sysctl.c,v 1.27 1997/10/03 20:58:04 deraadt Exp $ */
+/* $OpenBSD: sysctl.c,v 1.28 1997/10/03 21:15:19 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.27 1997/10/03 20:58:04 deraadt Exp $";
+static char *rcsid = "$OpenBSD: sysctl.c,v 1.28 1997/10/03 21:15:19 deraadt Exp $";
#endif
#endif /* not lint */
@@ -506,7 +506,7 @@ parse(string, flags)
if (!nflag)
(void)printf("%s = ", string);
- printf("Cylinders=%d Tracks=%d Sectors=%d %08x\n",
+ printf("Cylinders=%d Tracks=%d Sectors=%d (%08x)\n",
BIOSNTRACKS(geo), BIOSNHEADS(geo), BIOSNSECTS(geo), geo);
return;
}