From 17fec17e779d0e23590e4460d8f0f2a0d85fc3be Mon Sep 17 00:00:00 2001 From: Pawel Jakub Dawidek Date: Sat, 11 Feb 2006 17:29:06 +0000 Subject: [PATCH] Correct typo. 'fbp' is NULL here so this will result in a panic. MFC after: 3 days --- sys/geom/raid3/g_raid3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/geom/raid3/g_raid3.c b/sys/geom/raid3/g_raid3.c index af1b55484c6f..941ed94e02cf 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; }