aboutsummaryrefslogtreecommitdiffstats
path: root/vconsole.c
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2012-12-13 14:30:50 +0100
committerGerd Hoffmann <kraxel@redhat.com>2012-12-13 14:30:50 +0100
commitc14145c306beb2809435818f53c8c74390a831dc (patch)
tree0d72267178d50f79a9b119d4b211392f0832d21f /vconsole.c
parentadfaa5c01869796a7c3b95c8d7136e9d127d0d33 (diff)
downloadvconsole-c14145c306beb2809435818f53c8c74390a831dc.tar.gz
use --direct for virt-viewer
Diffstat (limited to 'vconsole.c')
-rw-r--r--vconsole.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/vconsole.c b/vconsole.c
index bd64ccc..c9293f4 100644
--- a/vconsole.c
+++ b/vconsole.c
@@ -307,7 +307,9 @@ static void menu_cb_vm_gfx(GtkAction *action, void *data)
return;
} else {
/* child */
- execlp("virt-viewer", "virt-viewer", "-w", "-c", uri, dom->uuid, NULL);
+ execlp("virt-viewer", "virt-viewer",
+ "--direct", /* tunneling doesn't work well */
+ "-w", "-c", uri, dom->uuid, NULL);
perror("execlp");
exit(1);
}