|
|
0d20ef |
From 89b5f3263f16a21a64b48cb361a9031d8980df71 Mon Sep 17 00:00:00 2001
|
|
|
0d20ef |
From: "Richard W.M. Jones" <rjones@redhat.com>
|
|
|
0d20ef |
Date: Thu, 27 Nov 2014 17:40:52 +0000
|
|
|
0d20ef |
Subject: [PATCH] v2v: Fix command line --help output for --no-trim option.
|
|
|
0d20ef |
|
|
|
0d20ef |
(cherry picked from commit 196813ea7466c54d26f71ff1760b433bdc29c081)
|
|
|
0d20ef |
---
|
|
|
0d20ef |
v2v/cmdline.ml | 2 +-
|
|
|
0d20ef |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
0d20ef |
|
|
|
0d20ef |
diff --git a/v2v/cmdline.ml b/v2v/cmdline.ml
|
|
|
0d20ef |
index 69a627f..01f3335 100644
|
|
|
0d20ef |
--- a/v2v/cmdline.ml
|
|
|
0d20ef |
+++ b/v2v/cmdline.ml
|
|
|
0d20ef |
@@ -159,7 +159,7 @@ let parse_cmdline () =
|
|
|
0d20ef |
"-n", Arg.String add_network, "in:out " ^ s_"Map network 'in' to 'out'";
|
|
|
0d20ef |
"--network", Arg.String add_network, "in:out " ^ ditto;
|
|
|
0d20ef |
"--no-copy", Arg.Clear do_copy, " " ^ s_"Just write the metadata";
|
|
|
0d20ef |
- "--no-trim", Arg.String set_no_trim, "all|mp,mp,.." ^ s_"Don't trim selected mounts";
|
|
|
0d20ef |
+ "--no-trim", Arg.String set_no_trim, "all|mp,mp,.." ^ " " ^ s_"Don't trim selected mounts";
|
|
|
0d20ef |
"-o", Arg.String set_output_mode, o_options ^ " " ^ s_"Set output mode (default: libvirt)";
|
|
|
0d20ef |
"-oa", Arg.String set_output_alloc, "sparse|preallocated " ^ s_"Set output allocation mode";
|
|
|
0d20ef |
"-oc", Arg.Set_string output_conn, "uri " ^ s_"Libvirt URI";
|
|
|
0d20ef |
--
|
|
|
0d20ef |
1.8.3.1
|
|
|
0d20ef |
|