diff options
-rw-r--r-- | sys/geom/geom_dump.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/geom/geom_dump.c b/sys/geom/geom_dump.c index 8aaab0f..6125fd8 100644 --- a/sys/geom/geom_dump.c +++ b/sys/geom/geom_dump.c @@ -215,7 +215,9 @@ g_conf_provider(struct sbuf *sb, struct g_provider *pp) sbuf_printf(sb, "\t <sectorsize>%u</sectorsize>\n", pp->sectorsize); sbuf_printf(sb, "\t <stripesize>%u</stripesize>\n", pp->stripesize); sbuf_printf(sb, "\t <stripeoffset>%u</stripeoffset>\n", pp->stripeoffset); - if (pp->geom->flags & G_GEOM_WITHER) + if (pp->flags & G_PF_WITHER) + sbuf_printf(sb, "\t <wither/>\n"); + else if (pp->geom->flags & G_GEOM_WITHER) ; else if (pp->geom->dumpconf != NULL) { sbuf_printf(sb, "\t <config>\n"); |