]> sourceware.org Git - lvm2.git/commitdiff
Remove incorrect requirement for -j or -m from lvchange error message.
authorAlasdair Kergon <agk@redhat.com>
Mon, 5 Sep 2011 12:54:29 +0000 (12:54 +0000)
committerAlasdair Kergon <agk@redhat.com>
Mon, 5 Sep 2011 12:54:29 +0000 (12:54 +0000)
WHATS_NEW
tools/lvchange.c

index c1db1610d658d722b395be33b4ae4978d4d13121..4c3631c9f286f22b29ab6a2d30762c0aaa541626 100644 (file)
--- a/WHATS_NEW
+++ b/WHATS_NEW
@@ -1,5 +1,6 @@
 Version 2.02.89 - 
 ==================================
+  Remove incorrect requirement for -j or -m from lvchange error message.
   Fix unsafe table load when splitting off smaller mirror from a larger one.
   Use size_t return type for text_vg_export_raw() and export_vg_to_buffer().
   Add configure --enable-lvmetad for building the (experimental) LVMetaD.
index 7979ffa63995096fc300fca35a363189caa0cb14..1a5cce6b47d966a50378e0966527850bd7f1af30 100644 (file)
@@ -715,10 +715,8 @@ int lvchange(struct cmd_context *cmd, int argc, char **argv)
 
        if (!update &&
             !arg_count(cmd, available_ARG) && !arg_count(cmd, refresh_ARG) &&
-            !arg_count(cmd, monitor_ARG) && !arg_count(cmd, poll_ARG) &&
-            /* for persistent_ARG */
-           !arg_count(cmd, minor_ARG) && !arg_count(cmd, major_ARG)) {
-               log_error("Need 1 or more of -a, -C, -j, -m, -M, -p, -r, "
+            !arg_count(cmd, monitor_ARG) && !arg_count(cmd, poll_ARG)) {
+               log_error("Need 1 or more of -a, -C, -M, -p, -r, "
                          "--resync, --refresh, --alloc, --addtag, --deltag, "
                          "--monitor or --poll");
                return EINVALID_CMD_LINE;
This page took 0.042793 seconds and 5 git commands to generate.