summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1998-05-02 03:33:34 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1998-05-02 03:33:34 +0000
commita37706bfff81fddb952bf109b87e340e917d5e2e (patch)
tree88ec561ea1b04cb4c799a786357d49ea81a41988 /sys/arch
parentac33bf2bc3df311c4d87bec5e6617653779e7342 (diff)
Fix pasto
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/alpha/alpha/disksubr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/alpha/disksubr.c b/sys/arch/alpha/alpha/disksubr.c
index 41cf7d827fb..2c8aab565cc 100644
--- a/sys/arch/alpha/alpha/disksubr.c
+++ b/sys/arch/alpha/alpha/disksubr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: disksubr.c,v 1.21 1998/03/02 20:12:02 niklas Exp $ */
+/* $OpenBSD: disksubr.c,v 1.22 1998/05/02 03:33:33 millert Exp $ */
/* $NetBSD: disksubr.c,v 1.21 1996/05/03 19:42:03 christos Exp $ */
/*
@@ -236,7 +236,7 @@ readdisklabel(dev, strat, lp, osdep)
struct disklabel minilabel, fallbacklabel;
/* minimal requirements for archtypal disk label */
- if (lp->d_secperunit == 0)
+ if (lp->d_secsize == 0)
lp->d_secsize = DEV_BSIZE;
if (lp->d_secperunit == 0)
lp->d_secperunit = 0x1fffffff;