search for: d4861f9

Displaying 2 results from an estimated 2 matches for "d4861f9".

Did you mean: d48129
2015 Jan 16
2
[PATCH 1/2] mllib: add simple qemu filename sanitizing function
It mimics a bit in OCaml the logic used in commit a95214b1985e694946e3426120a6fdc13a3f081f (for the main library) and commit 588af1953e5f7ab74009b9175cc5d3efb8bb651a (in disk-create), so in OCaml tools direct calls to qemu/qemu-img with filenames provided by the user can properly handle filenames with e.g. ':'. --- mllib/common_utils.ml | 13 +++++++++++++ mllib/common_utils.mli | 8
2015 Jan 16
0
[PATCH 2/2] sparsify: handle output filenames with ':'
...ing a transport, failing the last "qemu-img convert" call. Use the new qemu_input_filename helper to handle the output filename correctly. --- sparsify/copying.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sparsify/copying.ml b/sparsify/copying.ml index 3628b01..d4861f9 100644 --- a/sparsify/copying.ml +++ b/sparsify/copying.ml @@ -311,7 +311,7 @@ You can ignore this warning or change it to a hard failure using the (match option with | None -> "" | Some option -> " -o " ^ quote option) - (quote overlaydisk) (quot...