aboutsummaryrefslogtreecommitdiff
path: root/qga
diff options
context:
space:
mode:
authorStefan Hajnoczi <stefanha@redhat.com>2013-02-19 15:12:34 +0100
committerMichael Roth <mdroth@linux.vnet.ibm.com>2013-03-11 18:53:46 -0500
commit9e7c23db13b23febac4ba2d22419aa8f1884929e (patch)
treeaf59e309e94d3fc8bf04819a88fe8121722f50cd /qga
parented2cbf74446b008f9de526a50e4b06265635120c (diff)
qemu-ga: fix confusing GAChannelMethod comparison
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>
Diffstat (limited to 'qga')
-rw-r--r--qga/channel-win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/qga/channel-win32.c b/qga/channel-win32.c
index 16bf44a376..7ed98d72fb 100644
--- a/qga/channel-win32.c
+++ b/qga/channel-win32.c
@@ -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;
}