Blame SOURCES/0018-Show-errors-generated-by-connection-dialog.patch

48c875
From a1ca605ad8a4fd1aa76fff259080963f342e07c7 Mon Sep 17 00:00:00 2001
48c875
From: Christophe de Dinechin <cdupontd@redhat.com>
48c875
Date: Thu, 9 Feb 2017 13:00:19 +0100
48c875
Subject: [PATCH 18/26] Show errors generated by connection dialog
48c875
48c875
When running 'remote-viewer' without arguments,
48c875
and selecting a non-supported protocol, e.g. ssh://foo,
48c875
the generated error was silently swallowed by the retry loop.
48c875
This was introduced in 06b2c382468876a19600374bd59475e66d488af8.
48c875
48c875
Signed-off-by: Christophe de Dinechin <cdupontd@redhat.com>
48c875
---
48c875
 src/remote-viewer.c | 3 +++
48c875
 1 file changed, 3 insertions(+)
48c875
48c875
diff --git a/src/remote-viewer.c b/src/remote-viewer.c
48c875
index d04dbb5..8c31532 100644
48c875
--- a/src/remote-viewer.c
48c875
+++ b/src/remote-viewer.c
48c875
@@ -1195,6 +1195,9 @@ cleanup:
48c875
     type = NULL;
48c875
 
48c875
     if (!ret && priv->open_recent_dialog) {
48c875
+        if (error != NULL) {
48c875
+            virt_viewer_app_simple_message_dialog(app, _("Unable to connect: %s"), error->message);
48c875
+        }
48c875
         g_clear_error(&error);
48c875
         goto retry_dialog;
48c875
     }
48c875
-- 
48c875
2.12.0
48c875