diff options
Diffstat (limited to 'sys/geom/concat/g_concat.c')
-rw-r--r-- | sys/geom/concat/g_concat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/geom/concat/g_concat.c b/sys/geom/concat/g_concat.c index 768e2cb..9dd8bff 100644 --- a/sys/geom/concat/g_concat.c +++ b/sys/geom/concat/g_concat.c @@ -791,7 +791,8 @@ g_concat_config(struct gctl_req *req, struct g_class *mp, const char *verb) if (strcmp(verb, "create") == 0) { g_concat_ctl_create(req, mp); return; - } else if (strcmp(verb, "destroy") == 0) { + } else if (strcmp(verb, "destroy") == 0 || + strcmp(verb, "stop") == 0) { g_concat_ctl_destroy(req, mp); return; } |