[virt-tools-list] [PATCH virt-viewer] "Unable to connect to the graphic server" error on guest shutdown

Marc-André Lureau marcandre.lureau at gmail.com
Tue Nov 20 12:04:55 UTC 2012


In virt_viewer_app_activate(), priv->connected is set to FALSE when
the connect/active is successfull. However, we rely on it to know
whether the virt_viewer_app_disconnected() is an error, so only set it
to FALSE when connection failed.

Fixes:
https://bugzilla.redhat.com/show_bug.cgi?id=875697
---
 src/virt-viewer-app.c | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/src/virt-viewer-app.c b/src/virt-viewer-app.c
index 50a3a2d..6b3ad6d 100644
--- a/src/virt-viewer-app.c
+++ b/src/virt-viewer-app.c
@@ -890,15 +890,17 @@ virt_viewer_app_activate(VirtViewerApp *self)
 
     ret = VIRT_VIEWER_APP_GET_CLASS(self)->activate(self);
 
-    if (ret != -1) {
-        virt_viewer_app_show_status(self, _("Connecting to graphic server"));
+    if (ret == -1) {
         priv->connected = FALSE;
+    } else {
+        virt_viewer_app_show_status(self, _("Connecting to graphic server"));
         priv->cancelled = FALSE;
         priv->active = TRUE;
-        priv->grabbed = FALSE;
-        virt_viewer_app_update_title(self);
     }
 
+    priv->grabbed = FALSE;
+    virt_viewer_app_update_title(self);
+
     return ret;
 }
 
-- 
1.7.11.7




More information about the virt-tools-list mailing list