- (djm) [contrib/gnome-ssh-askpass2.c] Make askpass dialog desktop-modal.

bz#1645, patch from jchadima AT redhat.com
This commit is contained in:
Damien Miller 2009-11-18 17:51:59 +11:00
parent 04ee0f8f12
commit 2191e04549
2 changed files with 5 additions and 1 deletions

View File

@ -2,7 +2,9 @@
- (djm) [channels.c misc.c misc.h sshd.c] add missing setsockopt() to
set IPV6_V6ONLY for local forwarding with GatwayPorts=yes. Unify
setting IPV6_V6ONLY behind a new function misc.c:sock_set_v6only()
report and fix from jan.kratochvil AT redhat.com
bz#1648, report and fix from jan.kratochvil AT redhat.com
- (djm) [contrib/gnome-ssh-askpass2.c] Make askpass dialog desktop-modal.
bz#1645, patch from jchadima AT redhat.com
20091107
- (dtucker) [authfile.c] Fall back to 3DES for the encryption of private

View File

@ -120,6 +120,8 @@ passphrase_dialog(char *message)
g_signal_connect(G_OBJECT(entry), "activate",
G_CALLBACK(ok_dialog), dialog);
gtk_window_set_keep_above(GTK_WINDOW(dialog), TRUE);
/* Grab focus */
gtk_widget_show_now(dialog);
if (grab_pointer) {