[Pkg-libvirt-commits] [libguestfs] 06/29: v2v: Fix detection of Win2008R2 drivers (RHBZ#1234351).
Hilko Bengen
bengen at moszumanska.debian.org
Sun Nov 1 17:15:01 UTC 2015
This is an automated email from the git hooks/post-receive script.
bengen pushed a commit to annotated tag upstream/1.29.49
in repository libguestfs.
commit a324ae2ad72f2a2188eb0d4398c9e6548c499c5a
Author: Richard W.M. Jones <rjones at redhat.com>
Date: Wed Jul 1 11:01:43 2015 +0100
v2v: Fix detection of Win2008R2 drivers (RHBZ#1234351).
This fixes commit 47b5f245bec908f803f0a89c3b1e3166cfe33aad.
---
v2v/utils.ml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/v2v/utils.ml b/v2v/utils.ml
index 1f8c357..0abfb6a 100644
--- a/v2v/utils.ml
+++ b/v2v/utils.ml
@@ -230,7 +230,7 @@ let find_virtio_win_drivers virtio_win =
(6, 0, Vwd_server)
else if pathelem "w7" || pathelem "win7" then
(6, 1, Vwd_client)
- else if pathelem "2k8r2" || pathelem "win2008" then
+ else if pathelem "2k8r2" || pathelem "win2008r2" then
(6, 1, Vwd_server)
else if pathelem "w8" || pathelem "win8" then
(6, 2, Vwd_client)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-libvirt/libguestfs.git
More information about the Pkg-libvirt-commits
mailing list