Skip to content

Commit

Permalink
Forgot to commit changelog from loginrec changes
Browse files Browse the repository at this point in the history
 - (djm) Fix 9 character passphrase failure with gnome-ssh-askpass.
   Problem was caused by interrupted read in ssh-add. Report from Donald
   J. Barry <[email protected]>
  • Loading branch information
djmdjm committed Sep 30, 2000
1 parent f5a8147 commit 87f43ff
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions CREDITS
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Tatu Ylonen <[email protected]> - Creator of SSH
Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
Theo de Raadt, and Dug Song - Creators of OpenSSH

Alain St-Denis <[email protected]> - Irix fix
Alexandre Oliva <[email protected]> - AIX fixes
Andre Lucas <[email protected]> - new login code, many fixes
Andreas Steinmetz <[email protected]> - Shadow password expiry support
Expand Down
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@
- [email protected] 2000/09/28 12:03:18
[channels.c]
debug -> debug2 cleanup
- (djm) Irix strips "/dev/tty" from [uw]tmp entries (other systems only
strip "/dev/"). Fix loginrec.c based on patch from Alain St-Denis
<[email protected]>
- (djm) Fix 9 character passphrase failure with gnome-ssh-askpass.
Problem was caused by interrupted read in ssh-add. Report from Donald
J. Barry <[email protected]>

20000929
- (djm) Fix SSH2 not terminating until all background tasks done problem.
Expand Down
2 changes: 1 addition & 1 deletion ssh-add.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ ssh_askpass(char *askpass, char *msg)
fatal("ssh_askpass: exec(%s): %s", askpass, strerror(errno));
}
close(p[1]);
len = read(p[0], buf, sizeof buf);
len = atomicio(read, p[0], buf, sizeof buf);
close(p[0]);
while (waitpid(pid, &status, 0) < 0)
if (errno != EINTR)
Expand Down

0 comments on commit 87f43ff

Please sign in to comment.