1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-02 01:18:26 +03:00

Fix error message when adding metadata directory to internal list fails.

Author: Takahiro Yasui <tyasui@redhat.com>
This commit is contained in:
Takahiro Yasui 2009-03-23 21:13:37 +00:00
parent 1b2e147cc8
commit 1d13e51826
2 changed files with 3 additions and 2 deletions

View File

@ -7,6 +7,7 @@ Version 2.02.46 -
Rename liblvm.a to liblvm-internal.a and build new application library.
Flush memory pool and fix locking in clvmd refresh and backup command.
Fix unlocks in clvmd-corosync. Broken in 2.02.45.
Fix error message when adding metadata directory to internal list fails.
Version 2.02.45 - 3rd March 2009
================================

View File

@ -1996,8 +1996,8 @@ struct format_type *create_text_format(struct cmd_context *cmd)
}
if (!_add_dir(cv->v.str, &mda_lists->dirs)) {
log_error("Failed to add %s to internal device "
"cache", cv->v.str);
log_error("Failed to add %s to text format "
"metadata directory list ", cv->v.str);
goto err;
}
}