summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
AgeCommit message (Collapse)Author
2004-07-28more s/illegal/invalid/Markus Friedl
2004-07-28call setsid() _before_ re-execMarkus Friedl
2004-07-21bz#902: cache remote port so we don't fatal() in auth_log when remoteDamien Miller
connection goes away quickly. from peak AT argo.troja.mff.cuni.cz; ok markus@
2004-07-21fix function declarationDamien Miller
2004-07-21bz#899: Don't display invalid usernames in setproctitleDamien Miller
from peak AT argo.troja.mff.cuni.cz; ok markus@
2004-07-21s/Illegal user/Invalid user/; many requests; ok djm, millert, niklas, miod, ...Markus Friedl
2004-07-17Move "Last logged in at.." message generation to the monitor, rightDarren Tucker
before recording the new login. Fixes missing lastlog message when /var/log/lastlog is not world-readable and incorrect datestamp when multiple sessions are used (bz #463); much assistance & ok markus@
2004-07-12Fix incorrect macro, .I -> .EmBrad Smith
From: Eric S. Raymond <esr at thyrsus dot com> ok jmc@
2004-07-11spacesTheo de Raadt
2004-07-08Prevent scp from skipping the file following a double-error.Darren Tucker
bz #863, ok markus@
2004-07-03Put s/key functions inside #ifdef SKEY same as monitor.c,Darren Tucker
from des@freebsd via bz #330, ok markus@
2004-07-03Use '\0' not 0 for string; ok djm@, deraadt@Darren Tucker
2004-06-30unbreak TTY break, diagnosed by darren AT dazwin.com; ok markus@Damien Miller
2004-06-26initialise some fd variables to -1, djm@ okAnil Madhavapeddy
2004-06-26new sentence, new line;Jason McIntyre
2004-06-26punctuation and grammar fixes. also, keep the options in order.Jason McIntyre
2004-06-26- remove double wordJason McIntyre
- rearrange .Bk to keep SYNOPSIS nice - -M before -m in options description
2004-06-25bz #875: fix bad escape char error message; reported by f_mohr AT yahoo.deDamien Miller
2004-06-25fix broken fd handling in the re-exec fallback path, particularly whenDamien Miller
/dev/crypto is in use; ok deraadt@ markus@
2004-06-25Fall back to stat+rename if filesystem doesn't doesn't support hardDarren Tucker
links. bz#823, ok djm@
2004-06-25only perform tcp wrappers checks when the incoming connection is on a socket.Damien Miller
silences useless warnings from regress tests that use proxycommand="sshd -i" prompted by david@ ok markus@
2004-06-24re-exec sshd on accept(); initial work, final debugging and ok markus@Damien Miller
2004-06-23Fix counting in master/slave when passing environment variables; ok djm@Darren Tucker
2004-06-23-Wshadow fix up s/encrypt/do_encrypt/. OK djm@, markus@mouring
2004-06-22Change login->username, will prevent -Wshadow errors in Portable; ok markus@Darren Tucker
2004-06-22don't show .files by default in ls, add -a option to turn them back on;Damien Miller
ok markus
2004-06-21document sort optionsDamien Miller
2004-06-21prefix ls option flags with LS_Damien Miller
2004-06-21introduce sorting for ls, same options as /bin/ls; ok markus@Damien Miller
2004-06-21mark fatal and cleanup exit as __dead; ok markus@Damien Miller
2004-06-21comment out -Wshadow for now, gcc2 sucks. noticed by markusAnil Madhavapeddy
2004-06-21fix fd leak for multiple subsystem connections; with markus@Damien Miller
2004-06-21make ssh -Wshadow clean, no functional changesAnil Madhavapeddy
markus@ ok
2004-06-20mention new -n flagDamien Miller
2004-06-20make "ls -l" listings print user/group names, add "ls -n" to show uid/gidDamien Miller
(like /bin/ls); idea & ok markus@
2004-06-20filter passed env vars at slave in connection sharing case; ok markus@Damien Miller
2004-06-18clientloop.cDamien Miller
2004-06-18trim synopsis for -S, allow -S and -oControlMaster, -MM means 'ask'; ok djmMarkus Friedl
2004-06-18delay signal handler setup until we have finished talking to the master.Damien Miller
allow interrupting of setup (e.g. if master is stuck); ok markus@
2004-06-18Use execvp instead of execv so sftp -S ssh works. "makes sense" markus@Darren Tucker
2004-06-17sync usage() and SYNPOSIS with connection sharing changesDamien Miller
2004-06-17Add option for confirmation (ControlMaster=ask) via ssh-askpass before openingDamien Miller
shared connections; ok markus@
2004-06-17support environment passing over shared connections; ok markus@Damien Miller
2004-06-15missed one unset_nonblock; spotted by Tim RiceDamien Miller
2004-06-14set_nonblock() instead of fnctl(...,O_NONBLOCK); "looks sane" deraadt@Damien Miller
2004-06-13implement session multiplexing in the client (the server has supported thisDamien Miller
since 2.0); ok markus@
2004-06-13List supported ciphers in man pages, tidy up ssh -c;Darren Tucker
"looks fine" jmc@, ok markus@
2004-06-13implement diffie-hellman-group14-sha1 kex method (trivial extension toDamien Miller
existing diffie-hellman-group1-sha1); ok markus@
2004-06-03initialize pointers, ok markus@Pedro Martelletto
2004-06-01Remove redundant #include; ok markus@Darren Tucker