diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2012-12-13 14:30:50 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-12-13 14:30:50 +0100 |
commit | c14145c306beb2809435818f53c8c74390a831dc (patch) | |
tree | 0d72267178d50f79a9b119d4b211392f0832d21f /vconsole.c | |
parent | adfaa5c01869796a7c3b95c8d7136e9d127d0d33 (diff) | |
download | vconsole-c14145c306beb2809435818f53c8c74390a831dc.tar.gz |
use --direct for virt-viewer
Diffstat (limited to 'vconsole.c')
-rw-r--r-- | vconsole.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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); } |