Bugzilla – Attachment 738 Details for
Bug 950
terminal settings not restored after Ctrl+C during password prompt in scp/sftp
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
proposed patch
openssh-3.8.1p1-ttysanity.patch (text/plain), 586 bytes, created by
Pavel Kankovsky
on 2004-11-05 11:08:20 AEDT
(
hide
)
Description:
proposed patch
Filename:
MIME Type:
Creator:
Pavel Kankovsky
Created:
2004-11-05 11:08:20 AEDT
Size:
586 bytes
patch
obsolete
>--- openssh-3.8.1p1/scp.c.ttysanity Mon Nov 24 03:09:28 2003 >+++ openssh-3.8.1p1/scp.c Fri Nov 5 00:48:41 2004 >@@ -112,8 +112,10 @@ > static void > killchild(int signo) > { >- if (do_cmd_pid > 1) >+ if (do_cmd_pid > 1) { > kill(do_cmd_pid, signo); >+ waitpid(do_cmd_pid, NULL, 0); >+ } > > _exit(1); > } >--- openssh-3.8.1p1/sftp.c.ttysanity Mon Mar 8 13:12:19 2004 >+++ openssh-3.8.1p1/sftp.c Fri Nov 5 00:50:09 2004 >@@ -1208,8 +1208,10 @@ > static void > killchild(int signo) > { >- if (sshpid > 1) >+ if (sshpid > 1) { > kill(sshpid, signo); >+ waitpid(sshpid, NULL, 0); >+ } > > _exit(1); > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 950
: 738 |
898