From f07b69478ea810dfcdd371ccac77a43abfde3bb1 Mon Sep 17 00:00:00 2001 From: Scott Long Date: Wed, 19 Jun 2013 23:09:10 +0000 Subject: [PATCH] Fix a mystery cut-n-paste corruption from the previous commit. Submitted by: Brenden Fabeny --- sys/geom/mirror/g_mirror.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/geom/mirror/g_mirror.c b/sys/geom/mirror/g_mirror.c index ffabf944603f..f2d94dd561d9 100644 --- a/sys/geom/mirror/g_mirror.c +++ b/sys/geom/mirror/g_mirror.c @@ -2040,7 +2040,7 @@ g_mirror_launch_provider(struct g_mirror_softc *sc) pp->stripeoffset = 0; /* Splitting of unmapped BIO's could work but isn't implemented now */ - if (sc->sc_balance != G_MIRROR_BALANCE_SPLIT) + if (sc->sc_balance != G_MIRROR_BALANCE_SPLIT) pp->flags |= G_PF_ACCEPT_UNMAPPED; LIST_FOREACH(disk, &sc->sc_disks, d_next) {