summaryrefslogtreecommitdiffstats
path: root/sys/geom/raid3
diff options
context:
space:
mode:
authorpjd <pjd@FreeBSD.org>2006-02-11 17:29:06 +0000
committerpjd <pjd@FreeBSD.org>2006-02-11 17:29:06 +0000
commit1aa881eae67cf08f30cfa9d656d3e2beb11d1702 (patch)
tree508118d9e9f8ce567cbea67d09878ad9ca355169 /sys/geom/raid3
parent28119d6012d5d852f4dde03bb3d4713576f475e2 (diff)
downloadFreeBSD-src-1aa881eae67cf08f30cfa9d656d3e2beb11d1702.zip
FreeBSD-src-1aa881eae67cf08f30cfa9d656d3e2beb11d1702.tar.gz
Correct typo. 'fbp' is NULL here so this will result in a panic.
MFC after: 3 days
Diffstat (limited to 'sys/geom/raid3')
-rw-r--r--sys/geom/raid3/g_raid3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/geom/raid3/g_raid3.c b/sys/geom/raid3/g_raid3.c
index af1b554..941ed94 100644
--- a/sys/geom/raid3/g_raid3.c
+++ b/sys/geom/raid3/g_raid3.c
@@ -1088,7 +1088,7 @@ g_raid3_gather(struct bio *pbp)
* accept any failures.
*/
if (pbp->bio_error == 0)
- pbp->bio_error = fbp->bio_error;
+ pbp->bio_error = cbp->bio_error;
} else {
fbp = cbp;
}
OpenPOWER on IntegriCloud