]> git.proxmox.com Git - qemu.git/commitdiff
qemu-ga: fix confusing GAChannelMethod comparison
authorStefan Hajnoczi <stefanha@redhat.com>
Tue, 19 Feb 2013 14:12:34 +0000 (15:12 +0100)
committerMichael Roth <mdroth@linux.vnet.ibm.com>
Mon, 11 Mar 2013 23:53:46 +0000 (18:53 -0500)
In commit 7868e26e5930f49ca942311885776b938dcf3b77
("qemu-ga: add initial win32 support") support was added for qemu-ga on
Windows using virtio-serial.  Other channel methods (ISA serial and UNIX
domain socket) are not supported on Windows.

Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
qga/channel-win32.c

index 16bf44a376bd5ce096d6e96d7eedd73f09b939d2..7ed98d72fb976df5d25df6a7fadf39b5f8c09efe 100644 (file)
@@ -287,7 +287,7 @@ GIOStatus ga_channel_write_all(GAChannel *c, const char *buf, size_t size)
 static gboolean ga_channel_open(GAChannel *c, GAChannelMethod method,
                                 const gchar *path)
 {
-    if (!method == GA_CHANNEL_VIRTIO_SERIAL) {
+    if (method != GA_CHANNEL_VIRTIO_SERIAL) {
         g_critical("unsupported communication method");
         return false;
     }