diff --git a/WHATS_NEW b/WHATS_NEW index 04e11285a..e70ab27bf 100644 --- a/WHATS_NEW +++ b/WHATS_NEW @@ -1,5 +1,6 @@ Version 2.02.46 - ================================ + Fix error message when archive initialization fails. Make sure clvmd-corosync releases the lockspace when it exits. Fix segfault for vgcfgrestore on VG with missing PVs. Block SIGTERM & SIGINT in clvmd subthreads. diff --git a/lib/commands/toolcontext.c b/lib/commands/toolcontext.c index 50b10e9a8..607b7a5ab 100644 --- a/lib/commands/toolcontext.c +++ b/lib/commands/toolcontext.c @@ -955,7 +955,7 @@ static int _init_backup(struct cmd_context *cmd) if (!archive_init(cmd, dir, days, min, cmd->default_settings.archive)) { - log_debug("backup_init failed."); + log_debug("archive_init failed."); return 0; }