aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorPawel Jakub Dawidek <pjd@FreeBSD.org>2004-02-27 15:34:21 +0000
committerPawel Jakub Dawidek <pjd@FreeBSD.org>2004-02-27 15:34:21 +0000
commit0e2ff2832c61d874df147ac8bef38f17e265a277 (patch)
tree639cedbfbf96085377b7be7d1f65e5f30bd64237 /sys
parent0787ce83b22ffcb12a20f7eaf0c7fa65f3d81f4a (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/geom/concat/g_concat.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/geom/concat/g_concat.c b/sys/geom/concat/g_concat.c
index ce62edab65875..eb7db86599516 100644
--- a/sys/geom/concat/g_concat.c
+++ b/sys/geom/concat/g_concat.c
@@ -537,7 +537,8 @@ g_concat_taste(struct g_class *mp, struct g_provider *pp, int flags __unused)
gp = g_new_geomf(mp, "concat:taste");
gp->start = g_concat_start;
- gp->access= g_concat_access;
+ gp->access = g_concat_access;
+ gp->orphan = g_concat_orphan;
cp = g_new_consumer(gp);
g_attach(cp, pp);