diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2009-05-21 23:45:49 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2009-05-21 23:45:49 +0000 |
commit | ae8a031e28803ad11c91125bd1523348d0f9aba7 (patch) | |
tree | bdb340ca3ea84c5ced44c0a90436c136a706dcf3 /sys/dev/raidframe | |
parent | a8bf30cd22bf1b839f7e9bffcd664791d8b3b2ae (diff) |
The only value that d_npartitions should have is MAXPARTITIONS.
Diffstat (limited to 'sys/dev/raidframe')
-rw-r--r-- | sys/dev/raidframe/rf_openbsdkintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/raidframe/rf_openbsdkintf.c b/sys/dev/raidframe/rf_openbsdkintf.c index cac048abce7..b0483948317 100644 --- a/sys/dev/raidframe/rf_openbsdkintf.c +++ b/sys/dev/raidframe/rf_openbsdkintf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rf_openbsdkintf.c,v 1.50 2008/07/23 16:24:43 beck Exp $ */ +/* $OpenBSD: rf_openbsdkintf.c,v 1.51 2009/05/21 23:45:48 krw Exp $ */ /* $NetBSD: rf_netbsdkintf.c,v 1.109 2001/07/27 03:30:07 oster Exp $ */ /*- @@ -2090,7 +2090,7 @@ raidgetdefaultlabel(RF_Raid_t *raidPtr, struct raid_softc *rs, DL_SETPOFFSET(&lp->d_partitions[RAW_PART], 0); DL_SETPSIZE(&lp->d_partitions[RAW_PART], raidPtr->totalSectors); lp->d_partitions[RAW_PART].p_fstype = FS_UNUSED; - lp->d_npartitions = RAW_PART + 1; + lp->d_npartitions = MAXPARTITIONS; lp->d_magic = DISKMAGIC; lp->d_magic2 = DISKMAGIC; |