diff options
author | 2014-07-12 21:47:04 +0000 | |
---|---|---|
committer | 2014-07-12 21:47:04 +0000 | |
commit | 2815088f61d01d62d865e8226587473c85b6197f (patch) | |
tree | 09ed3cb2baca6c4238d36cb4b8cbe1e0677b110e | |
parent | sync (diff) | |
download | wireguard-openbsd-2815088f61d01d62d865e8226587473c85b6197f.tar.xz wireguard-openbsd-2815088f61d01d62d865e8226587473c85b6197f.zip |
Fix the last commit by proper dereferencing the disklabel partition.
Found by me, fixed by krw@. Thanks!
-rw-r--r-- | sys/arch/octeon/dev/octcf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/octeon/dev/octcf.c b/sys/arch/octeon/dev/octcf.c index 940b050c541..f14c23b91a1 100644 --- a/sys/arch/octeon/dev/octcf.c +++ b/sys/arch/octeon/dev/octcf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: octcf.c,v 1.17 2014/07/12 20:38:27 krw Exp $ */ +/* $OpenBSD: octcf.c,v 1.18 2014/07/12 21:47:04 pirofti Exp $ */ /* $NetBSD: wd.c,v 1.193 1999/02/28 17:15:27 explorer Exp $ */ /* @@ -373,7 +373,7 @@ _octcfstart(struct octcf_softc *wd, struct buf *bp) lp = wd->sc_dk.dk_label; secno = DL_BLKTOSEC(lp, bp->b_blkno) + - DL_GETPOFFSET(lp->d_partitions[DISKPART(bp->b_dev)]); + DL_GETPOFFSET(&lp->d_partitions[DISKPART(bp->b_dev)]); nsecs = howmany(bp->b_bcount, lp->d_secsize); wd->sc_bp = bp; |