]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- Make <enter> close gnome-ssh-askpass (Debian bug #50299)
authorDamien Miller <djm@mindrot.org>
Mon, 22 Nov 1999 01:51:42 +0000 (12:51 +1100)
committerDamien Miller <djm@mindrot.org>
Mon, 22 Nov 1999 01:51:42 +0000 (12:51 +1100)
ChangeLog
gnome-ssh-askpass.c

index 21d6358a4636efe30e4d5178df5c374317f93f3b..840369f2fb1f43cc61f8424e36a7569bc25bb3df 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,28 +1,31 @@
+19991122
+ - Make <enter> close gnome-ssh-askpass (Debian bug #50299)
+
 19991121
 - OpenBSD CVS Changes
-    - [channels.c]
-      make this compile, bad markus
-    - [log.c readconf.c servconf.c ssh.h]
-      bugfix: loglevels are per host in clientconfig,
-      factor out common log-level parsing code.
-    - [servconf.c]
-      remove unused index (-Wall)
-    - [ssh-agent.c]
-      only one 'extern char *__progname'
-    - [sshd.8]
-      document SIGHUP, -Q to synopsis
-    - [sshconnect.c serverloop.c sshd.c packet.c packet.h]
-      [channels.c clientloop.c]
-      SSH_CMSG_MAX_PACKET_SIZE, some clients use this, some need this, niels@
-      [hope this time my ISP stays alive during commit]
-    - [OVERVIEW README] typos; green@freebsd
-    - [ssh-keygen.c]
-      replace xstrdup+strcat with strlcat+fixed buffer, fixes OF (bad me)
-      exit if writing the key fails (no infinit loop)
-      print usage() everytime we get bad options
-    - [ssh-keygen.c] overflow, djm@mindrot.org
-    - [sshd.c] fix sigchld race; cjc5@po.cwru.edu
-      
+ - OpenBSD CVS Changes
+   - [channels.c]
+     make this compile, bad markus
+   - [log.c readconf.c servconf.c ssh.h]
+     bugfix: loglevels are per host in clientconfig,
+     factor out common log-level parsing code.
+   - [servconf.c]
+     remove unused index (-Wall)
+   - [ssh-agent.c]
+     only one 'extern char *__progname'
+   - [sshd.8]
+     document SIGHUP, -Q to synopsis
+   - [sshconnect.c serverloop.c sshd.c packet.c packet.h]
+     [channels.c clientloop.c]
+     SSH_CMSG_MAX_PACKET_SIZE, some clients use this, some need this, niels@
+     [hope this time my ISP stays alive during commit]
+   - [OVERVIEW README] typos; green@freebsd
+   - [ssh-keygen.c]
+     replace xstrdup+strcat with strlcat+fixed buffer, fixes OF (bad me)
+     exit if writing the key fails (no infinit loop)
+     print usage() everytime we get bad options
+   - [ssh-keygen.c] overflow, djm@mindrot.org
+   - [sshd.c] fix sigchld race; cjc5@po.cwru.edu
+     
 19991120
  - Merged more Solaris support from Marc G. Fournier 
    <marc.fournier@acadiau.ca>
index 74956099225148ae2b89b1a06bc2b150893e9c24..93a64d1e138d621f0f3ee2158445fc009e47d54f 100644 (file)
@@ -74,6 +74,9 @@ int passphrase_dialog(char **passphrase_p, char *message)
        gdk_pointer_grab(dialog->window, TRUE, 0, NULL, NULL, GDK_CURRENT_TIME);
        gdk_keyboard_grab(dialog->window, FALSE, GDK_CURRENT_TIME);
 
+       /* Make <enter> close dialog */
+       gnome_dialog_editable_enters(GNOME_DIALOG(dialog), GTK_EDITABLE(entry));
+
        /* Run dialog */
        result = gnome_dialog_run(GNOME_DIALOG(dialog));