1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Return EINVALID_CMD_LINE not success when invalid VG name format is used.

This commit is contained in:
Alasdair Kergon 2009-07-21 11:10:49 +00:00
parent 3dcd5b3017
commit b68cc09932
2 changed files with 5 additions and 0 deletions

View File

@ -1,5 +1,6 @@
Version 2.02.50 - Version 2.02.50 -
================================ ================================
Return EINVALID_CMD_LINE not success when invalid VG name format is used.
Remove unnecessary messages after vgcreate/vgsplit refactor (2.02.49). Remove unnecessary messages after vgcreate/vgsplit refactor (2.02.49).
Add log_errno to set a specific errno and replace log_error in due course. Add log_errno to set a specific errno and replace log_error in due course.
Add lvm_errno and lvm_errmsg to liblvm to obtain failure information. Add lvm_errno and lvm_errmsg to liblvm to obtain failure information.

View File

@ -482,6 +482,8 @@ int process_each_vg(struct cmd_context *cmd, int argc, char **argv,
if (!validate_name(vg_name + 1)) { if (!validate_name(vg_name + 1)) {
log_error("Skipping invalid tag %s", log_error("Skipping invalid tag %s",
vg_name); vg_name);
if (ret_max < EINVALID_CMD_LINE)
ret_max = EINVALID_CMD_LINE;
continue; continue;
} }
if (!str_list_add(cmd->mem, &tags, if (!str_list_add(cmd->mem, &tags,
@ -497,6 +499,8 @@ int process_each_vg(struct cmd_context *cmd, int argc, char **argv,
if (strchr(vg_name, '/')) { if (strchr(vg_name, '/')) {
log_error("Invalid volume group name: %s", log_error("Invalid volume group name: %s",
vg_name); vg_name);
if (ret_max < EINVALID_CMD_LINE)
ret_max = EINVALID_CMD_LINE;
continue; continue;
} }
if (!str_list_add(cmd->mem, &arg_vgnames, if (!str_list_add(cmd->mem, &arg_vgnames,