Displaying 1 result from an estimated 1 matches for "savettin".
Did you mean:
save_min
2003 Feb 04
0
[PATCH] openssh-3.5p1: restore SIGTTOU in readpassphrase()
...at/readpassphrase.c.orig Tue Sep 10
20:29:13 2002
+++ openssh-3.5p1/openbsd-compat/readpassphrase.c Tue Feb 4
08:30:06 2003
@@ -152,6 +152,7 @@
(void)sigaction(SIGTERM, &saveterm, NULL);
(void)sigaction(SIGTSTP, &savetstp, NULL);
(void)sigaction(SIGTTIN, &savettin, NULL);
+ (void)sigaction(SIGTTOU, &savettou, NULL);
if (input != STDIN_FILENO)
(void)close(input);
believe it or not, on Solaris 2.6 to 9 when running the csh, ssh
never gets a SIGTTIN in readpassphrase() if it's in the background,
so it needs to restore th...