summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
AgeCommit message (Collapse)Author
2001-10-30undo (disable debug again)Markus Friedl
2001-10-30ssh.1Markus Friedl
2001-10-29hostbased: check for client hostkey before building chostMarkus Friedl
2001-10-25better docu for fingerprinting, ok deraadt@Markus Friedl
2001-10-24make ~& (backgrounding) work again for proto v1; add support ~& for v2, tooMarkus Friedl
2001-10-24ignore SIGPIPE early, makes ssh work if agent dies, netbsd-pr via itojun@Markus Friedl
2001-10-24mention remote port in debug messageMarkus Friedl
2001-10-24remove unusedMarkus Friedl
2001-10-15crank versionTheo de Raadt
2001-10-11clear select masks if we return before calling select().Markus Friedl
2001-10-11delay detach of session if a channel gets closed but the child is still alive.Markus Friedl
however, release pty, since the fd's to the child are already closed.
2001-10-10try to keep channels open until an exit-status message is sent.Markus Friedl
don't kill the login shells if the shells stdin/out/err is closed. this should now work: ssh -2n localhost 'exec > /dev/null 2>&1; sleep 10; exit 5'; echo ?
2001-10-09simplify session close: no more delayed session_close, no more blocking ↵Markus Friedl
wait() calls.
2001-10-09close all channels if the connection to the remote host has been closed,Markus Friedl
should fix sshd's hanging with WCHAN==wait
2001-10-09stat subsystem command before calling do_exec, and return error to client.Markus Friedl
2001-10-09chdir $HOME after krb_afslog(); from bbense@networking.stanford.eduMarkus Friedl
2001-10-08some more IPv4or6 cleanupMarkus Friedl
2001-10-08use correct family for -b optionMarkus Friedl
2001-10-08better debugMarkus Friedl
2001-10-07BSD_AUTH supersedes SKEY, so SKEY is commented out.Markus Friedl
2001-10-07avoid possible FD_ISSET overflow for channels establishedMarkus Friedl
during channnel_after_select() (used for dynamic channels).
2001-10-07grammer; Matthew_Clarke@mindlink.bc.caMarkus Friedl
2001-10-06unify hostkey check error messages, simplify prompt.Markus Friedl
2001-10-06fix typo in error message, sync with do_exec_noptyMarkus Friedl
2001-10-06remove unused argumentMarkus Friedl
2001-10-04client_alive_check cleanupMarkus Friedl
2001-10-04comment out bogus conditions for selecting on connection_inMarkus Friedl
2001-10-04call OPENSSL_free() for memory allocated by openssl; from chombier@mac.comMarkus Friedl
2001-10-03missing copyrightMarkus Friedl
2001-10-03use realpath() for homedir, too. from jinmei@isl.rdc.toshiba.co.jpMarkus Friedl
2001-10-02#include "channels.h" for channel_set_af()Kevin Steves
2001-10-02return non-zero exit code on error; ok markus@Damien Miller
2001-10-01add NoHostAuthenticationForLocalhost; note that the hostkey isMarkus Friedl
now check for localhost, too.
2001-10-01remove ugliness; vp@drexel.edu via angelosMarkus Friedl
2001-10-01skip filenames containing \n; report jdamery@chiark.greenend.org.ukMarkus Friedl
and matthew@debian.org
2001-09-28bug: read user config first; report kaukasoi@elektroni.ee.tut.fiMarkus Friedl
2001-09-28bzero private key after loading to smartcard; ok markus@Damien Miller
2001-09-28Fix segv when smartcard communication error occurs during key load. ok markus@Damien Miller
2001-09-27don't talk about compile-time optionsCamiel Dobbelaar
ok markus@
2001-09-27typos; from solarMarkus Friedl
2001-09-27missing called=1; chombier@mac.comMarkus Friedl
2001-09-27mem leak; chombier@mac.comMarkus Friedl
2001-09-24OpenSSH_2.9.9Markus Friedl
2001-09-24don't rely on <unistd.h> for getopt(3) extern variable declarations;Kevin Steves
for portable. ok deraadt@
2001-09-23relax permission check for private key files.Markus Friedl
2001-09-23new rijndael implementationMarkus Friedl
2001-09-20CheckMail removed. OKed stevesk@mouring
2001-09-20bug compat: request a dummy channel for -N (no shell) sessions + cleanup; ↵Markus Friedl
vinschen@redhat.com
2001-09-20key_read returns now -1 or 1Markus Friedl
2001-09-20fix ClientAliveCountMaxKevin Steves