Displaying 2 results from an estimated 2 matches for "nilda".
Did you mean:
nalda
2001 Jun 06
1
proposal for cosmetic change: prompts
Hi. If I submit patches that make the prompts look more like prompts,
would those patches be welcome?
Before:
ecashin at nilda ecashin$ ssh-add ~/.ssh/id_dsa
Need passphrase for /home/ecashin/.ssh/id_dsa
Enter passphrase for /home/ecashin/.ssh/id_dsa
After (model 1):
ecashin at nilda ecashin$ ssh-add ~/.ssh/id_dsa
Need passphrase for /home/ecashin/.ssh/id_dsa
Enter passphrase for "/home/ecashin/.ssh/id_dsa...
2001 May 21
1
ignoring SIGPIPE causing problems in pipes
...to "hang".
I suspected that the ssh client was inappropriately ignoring the PIPE
signal, so I tried restoring from a cat of a local stream, and
observed that cat exited with a "Broken pipe" error. I made the
following change, commenting out the line that ignores the SIGPIPE:
nilda:2:ecashin openssh-2.9p1$ diff -u clientloop.c.dist clientloop.c
--- clientloop.c.dist Fri Apr 20 08:50:51 2001
+++ clientloop.c Sun May 20 22:55:35 2001
@@ -814,7 +814,7 @@
signal(SIGINT, signal_handler);
signal(SIGQUIT, signal_handler);
signal(SIGTERM, signal_hand...