summaryrefslogtreecommitdiffstats
path: root/src/virt-viewer-file.c
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2015-05-19 19:23:24 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2015-06-09 18:06:39 +0200
commit8884608104d836b219f9495fc752553ffdd89a55 (patch)
treec34cfa7660f966c6fed300b76d7029084efda2cf /src/virt-viewer-file.c
parenta9967fd2f63b3af17d841f82dd12bb098a8a966e (diff)
downloadvirt-viewer-8884608104d836b219f9495fc752553ffdd89a55.tar.gz
virt-viewer-8884608104d836b219f9495fc752553ffdd89a55.tar.xz
virt-viewer-8884608104d836b219f9495fc752553ffdd89a55.zip
vv-file: Show 'newer-version-url' when version check fails
We currently display a generic error message when the current binary is older than the minimum version specified in the vv file. The previous commit added a 'newer-version-url' field to these .vv file. This commit adds that URL to the error message if it's set.
Diffstat (limited to 'src/virt-viewer-file.c')
-rw-r--r--src/virt-viewer-file.c22
1 files changed, 17 insertions, 5 deletions
diff --git a/src/virt-viewer-file.c b/src/virt-viewer-file.c
index 906d719..2f1eb2b 100644
--- a/src/virt-viewer-file.c
+++ b/src/virt-viewer-file.c
@@ -816,11 +816,23 @@ virt_viewer_file_check_min_version(VirtViewerFile *self, GError **error)
version_cmp = virt_viewer_compare_buildid(min_version, PACKAGE_VERSION BUILDID);
if (version_cmp > 0) {
- g_set_error(error,
- VIRT_VIEWER_ERROR,
- VIRT_VIEWER_ERROR_FAILED,
- _("At least %s version %s is required to setup this connection"),
- g_get_application_name(), min_version);
+ gchar *url;
+ url = virt_viewer_file_get_version_url(self);
+ if (url != NULL) {
+ g_set_error(error,
+ VIRT_VIEWER_ERROR,
+ VIRT_VIEWER_ERROR_FAILED,
+ _("At least %s version %s is required to setup this"
+ " connection, see %s for details"),
+ g_get_application_name(), min_version, url);
+ g_free(url);
+ } else {
+ g_set_error(error,
+ VIRT_VIEWER_ERROR,
+ VIRT_VIEWER_ERROR_FAILED,
+ _("At least %s version %s is required to setup this connection"),
+ g_get_application_name(), min_version);
+ }
g_free(min_version);
return FALSE;
}