1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-30 17:18:21 +03:00

Fix "lvconvert -s" from always failing with argument error message.

Patch by Jun'ichi Nomura <j-nomura@ce.jp.nec.com>.
This commit is contained in:
Dave Wysochanski 2007-08-10 13:33:49 +00:00
parent 64119287c3
commit 62af220c9e
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
Version 2.02.28 - Version 2.02.28 -
================================ ================================
Fix "lvconvert -s" from always failing with argument error message.
Add more cluster info to lvmdump Add more cluster info to lvmdump
Add const attributes where possible, first cut. Add const attributes where possible, first cut.
Add support for renaming mirrored LVs. Add support for renaming mirrored LVs.

View File

@ -101,7 +101,7 @@ static int _lvconvert_name_params(struct lvconvert_params *lp,
static int _read_params(struct lvconvert_params *lp, struct cmd_context *cmd, static int _read_params(struct lvconvert_params *lp, struct cmd_context *cmd,
int argc, char **argv) int argc, char **argv)
{ {
int count; int count = 0;
int region_size; int region_size;
int pagesize = lvm_getpagesize(); int pagesize = lvm_getpagesize();