Displaying 1 result from an estimated 1 matches for "savettou".
Did you mean:
saveto
2003 Feb 04
0
[PATCH] openssh-3.5p1: restore SIGTTOU in readpassphrase()
...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 the SIGTTOU handler before it resends itself
SIGTTOU in o...