Displaying 1 result from an estimated 1 matches for "passphr".
Did you mean:
passmgr
2001 Jan 18
2
ssh-add bug
...add < /dev/null" in my X startup scripts, but didn't have
ssh-askpass installed, ssh-add started spewing errors into my
.xsession-errors and didn't stop.
I found that what happens is: ssh-add forks and attempts to exec
ssh-askpass. The exec-ed process is supposed to pass back the
passphrase on stdout. However, when the exec fails, the child
ssh-add process exits and--if stdout was not a terminal--flushes its
stdio buffers, which happen to contain a "Need passphrase" message.
As a result, the parent ssh-add sees what it interprets as a
passphrase coming back from the chil...