Currently virt-viewer doesn't allow the user to set his/her username in the SPICE authentication dialog. Now, auto fill the dialog with the current user name as username and leave to the user the possibility to change it, if necessary. --- v2: Fix typo in the shortlog/commit message --- src/virt-viewer-session-spice.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/virt-viewer-session-spice.c b/src/virt-viewer-session-spice.c index dd96fdf..6b61ce8 100644 --- a/src/virt-viewer-session-spice.c +++ b/src/virt-viewer-session-spice.c @@ -509,10 +509,11 @@ virt_viewer_session_spice_main_channel_event(SpiceChannel *channel G_GNUC_UNUSED _("invalid password")); self->priv->pass_try++; + user = g_strdup (g_get_user_name()); ret = virt_viewer_auth_collect_credentials(self->priv->main_window, "SPICE", NULL, - NULL, &password); + &user, &password); if (!ret) { g_signal_emit_by_name(session, "session-cancelled"); } else { -- 1.9.3 _______________________________________________ virt-tools-list mailing list virt-tools-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/virt-tools-list