[PATCH virt-viewer] Don't fail early if virDomainOpenGraphics fails

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



virt_viewer_app_open_connection invokes virDomainOpenGraphics which only works
for local connections. Returning after this failure makes us never reach the
ssh part so this unbreaks connections tunneled over ssh.
---
 src/virt-viewer-app.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/virt-viewer-app.c b/src/virt-viewer-app.c
index 7dcc4c1..34dcdde 100644
--- a/src/virt-viewer-app.c
+++ b/src/virt-viewer-app.c
@@ -821,8 +821,7 @@ virt_viewer_app_default_activate(VirtViewerApp *self)
     VirtViewerAppPrivate *priv = self->priv;
     int fd = -1;
 
-    if (!virt_viewer_app_open_connection(self, &fd))
-        return -1;
+    virt_viewer_app_open_connection(self, &fd);
 
     DEBUG_LOG("After open connection callback fd=%d", fd);
 
-- 
1.7.10.4


[Index of Archives]     [Linux Virtualization]     [KVM Development]     [CentOS Virtualization]     [Netdev]     [Ethernet Bridging]     [Linux Wireless]     [Kernel Newbies]     [Security]     [Linux for Hams]     [Netfilter]     [Bugtraq]     [Yosemite Forum]     [MIPS Linux]     [ARM Linux]     [Linux RAID]     [Linux Admin]     [Samba]     [Video 4 Linux]

  Powered by Linux