aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2016-12-14 15:23:13 +0300
committerMarc-André Lureau <marcandre.lureau@redhat.com>2017-05-04 15:34:41 +0400
commit315dd72d7580b74232cfc8381a86d37999b95199 (patch)
treeedf0d78e348eda34905456d0cb52ddd586488cbb /hw
parentbed3bb9b7e5ee28ebec50c30604cdfd522d6f6e6 (diff)
downloadqemu-315dd72d7580b74232cfc8381a86d37999b95199.zip
qemu-315dd72d7580b74232cfc8381a86d37999b95199.tar.gz
qemu-315dd72d7580b74232cfc8381a86d37999b95199.tar.bz2
xen: use a better chardev type check
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'hw')
-rw-r--r--hw/xen/xen-common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xen/xen-common.c b/hw/xen/xen-common.c
index ae76150..a9055e9 100644
--- a/hw/xen/xen-common.c
+++ b/hw/xen/xen-common.c
@@ -38,7 +38,7 @@ static int store_dev_info(int domid, Chardev *cs, const char *string)
int ret = -1;
/* Only continue if we're talking to a pty. */
- if (strncmp(cs->filename, "pty:", 4)) {
+ if (!CHARDEV_IS_PTY(cs)) {
return 0;
}
pts = cs->filename + 4;