diff options
Diffstat (limited to 'sys/geom/geom_apple.c')
-rw-r--r-- | sys/geom/geom_apple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/geom/geom_apple.c b/sys/geom/geom_apple.c index a1e8bc2..1b43633 100644 --- a/sys/geom/geom_apple.c +++ b/sys/geom/geom_apple.c @@ -157,7 +157,6 @@ g_apple_taste(struct g_class *mp, struct g_provider *pp, int insist) if (gp == NULL) return (NULL); g_topology_unlock(); - gp->dumpconf = g_apple_dumpconf; do { if (gp->rank != 2 && insist == 0) break; @@ -257,6 +256,7 @@ g_apple_taste(struct g_class *mp, struct g_provider *pp, int insist) static struct g_class g_apple_class = { .name = APPLE_CLASS_NAME, .taste = g_apple_taste, + .dumpconf = g_apple_dumpconf, }; DECLARE_GEOM_CLASS(g_apple_class, g_apple); |