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

cleanup: use try_id_read_format

Better then using log_suppress in this case.
This commit is contained in:
Zdenek Kabelac 2015-12-03 15:26:44 +01:00
parent c15c44a492
commit 20483ead5b
2 changed files with 3 additions and 8 deletions

View File

@ -2101,11 +2101,8 @@ static void _choose_vgs_to_process(struct cmd_context *cmd,
* matches the UUID of a VG. (--select should generally
* be used to select a VG by uuid instead.)
*/
if (!found && (cmd->command->flags & ALLOW_UUID_AS_NAME)) {
log_suppress(2);
arg_is_uuid = id_read_format(&id, sl->str);
log_suppress(0);
}
if (!found && (cmd->command->flags & ALLOW_UUID_AS_NAME))
arg_is_uuid = id_read_format_try(&id, sl->str);
if (!found && arg_is_uuid) {
dm_list_iterate_items_safe(vgnl, vgnl2, vgnameids_on_system) {

View File

@ -107,9 +107,7 @@ static int vg_rename_path(struct cmd_context *cmd, const char *old_vg_path,
}
}
log_suppress(2);
found_id = id_read_format(&id, vg_name_old);
log_suppress(0);
found_id = id_read_format_try(&id, vg_name_old);
if (found_id && (vg_name = lvmcache_vgname_from_vgid(cmd->mem, (char *)id.uuid))) {
if (!strcmp(vg_name, vg_name_new)) {