search for: patchp2v

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

Did you mean: patch2
2013 Oct 02
0
[PATCHp2v] virt-p2v-server: Die with the correct error message.
From: "Richard W.M. Jones" <rjones at redhat.com> This caused the real error to be hidden, resulting in the famous and uninformative: virt-v2v: Died at /usr/bin/virt-p2v-server line 404, <> line 7. --- p2v/server/virt-p2v-server.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p2v/server/virt-p2v-server.pl b/p2v/server/virt-p2v-server.pl index
2013 Oct 02
0
[PATCHp2v v2] virt-p2v-server: Die with the correct error message.
From: "Richard W.M. Jones" <rjones at redhat.com> Although the code is technically correct (because the successful call to $g->close won't overwrite $@ and because guestfs_close can never fail) it's still confusing to assign $err = $@ and then not use $err. Die with $err. It's possible something added here could overwrite $@ at some later time. ---