[virt-tools-list] [virt-viewer: PATCH 1/3] Let's the user cancel the SPICE auth dialog
Fabiano Fidêncio
fabiano at fidencio.org
Tue Sep 23 18:42:56 UTC 2014
On Tue, Sep 23, 2014 at 5:34 PM, Fabiano Fidêncio <fidencio at redhat.com>
wrote:
> virt_viewer_auth_collect_credentials() was recently changed to return
> a boolean instead of an integer (2561c171). This change introduced a
> regression in the authentication dialog behavior, do not letting the
> user cancel it.
> ---
> src/virt-viewer-session-spice.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/src/virt-viewer-session-spice.c
> b/src/virt-viewer-session-spice.c
> index 2323832..dd96fdf 100644
> --- a/src/virt-viewer-session-spice.c
> +++ b/src/virt-viewer-session-spice.c
> @@ -482,7 +482,7 @@
> virt_viewer_session_spice_main_channel_event(SpiceChannel *channel
> G_GNUC_UNUSED
> {
> VirtViewerSessionSpice *self = VIRT_VIEWER_SESSION_SPICE(session);
> gchar *password = NULL, *user = NULL;
> - int ret;
> + gboolean ret;
>
> g_return_if_fail(self != NULL);
>
> @@ -513,7 +513,7 @@
> virt_viewer_session_spice_main_channel_event(SpiceChannel *channel
> G_GNUC_UNUSED
> "SPICE",
> NULL,
> NULL, &password);
> - if (ret < 0) {
> + if (!ret) {
> g_signal_emit_by_name(session, "session-cancelled");
> } else {
> gboolean openfd;
> @@ -542,7 +542,7 @@
> virt_viewer_session_spice_main_channel_event(SpiceChannel *channel
> G_GNUC_UNUSED
> ret =
> virt_viewer_auth_collect_credentials(self->priv->main_window,
> "proxy", NULL,
> &user, &password);
> - if (ret < 0) {
> + if (!ret) {
> g_signal_emit_by_name(session, "session-cancelled");
> } else {
> spice_uri_set_user(proxy, user);
> --
> 1.9.3
>
> _______________________________________________
> virt-tools-list mailing list
> virt-tools-list at redhat.com
> https://www.redhat.com/mailman/listinfo/virt-tools-list
>
self NACK!
Typos in the commit message/short log.
--
Fabiano Fidêncio
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://listman.redhat.com/archives/virt-tools-list/attachments/20140923/a2f4b08e/attachment.htm>
More information about the virt-tools-list
mailing list