diff options
author | scottl <scottl@FreeBSD.org> | 2013-06-19 23:09:10 +0000 |
---|---|---|
committer | scottl <scottl@FreeBSD.org> | 2013-06-19 23:09:10 +0000 |
commit | 0aa865790135a77ce50833dfcc883eb18ff214e8 (patch) | |
tree | 24e0b4ed483a5c81d751126a203f29ebbf035682 /sys/geom | |
parent | ecb835e5253c73f747050586dbbddd637d087b85 (diff) | |
download | FreeBSD-src-0aa865790135a77ce50833dfcc883eb18ff214e8.zip FreeBSD-src-0aa865790135a77ce50833dfcc883eb18ff214e8.tar.gz |
Fix a mystery cut-n-paste corruption from the previous commit.
Submitted by: Brenden Fabeny
Diffstat (limited to 'sys/geom')
-rw-r--r-- | sys/geom/mirror/g_mirror.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/geom/mirror/g_mirror.c b/sys/geom/mirror/g_mirror.c index ffabf94..f2d94dd 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) { |