From aba9652e584b6f6a422233dea951eb59326a3de2 Mon Sep 17 00:00:00 2001 From: David Teigland Date: Tue, 17 Nov 2020 09:22:40 -0600 Subject: [PATCH] lvchange: fix error for foreign vg activation was using ECMD_FAILED instead of 0. --- tools/lvchange.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/lvchange.c b/tools/lvchange.c index f9a0b54e3..f37b68381 100644 --- a/tools/lvchange.c +++ b/tools/lvchange.c @@ -202,7 +202,7 @@ static int _lvchange_activate(struct cmd_context *cmd, struct logical_volume *lv strcmp(lv->vg->system_id, cmd->system_id) && is_change_activating(activate)) { log_error("Cannot activate LVs in a foreign VG."); - return ECMD_FAILED; + return 0; } if (lv_activation_skip(lv, activate, arg_is_set(cmd, ignoreactivationskip_ARG))) -- 2.43.5