summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2001-01-21split ssh.h and try to cleanup the #include mess. remove unnecessary #includes.Markus Friedl
rename util.[ch] -> misc.[ch]
2001-01-21remove -R flag; ok markus@Jakob Schlyter
2001-01-20KNF; ok markusDamien Miller
2001-01-20Check for NULL return from strdelim; ok markusDamien Miller
2001-01-20do not loop forever if askpass does not exist; from ↵Markus Friedl
andrew@pimlott.ne.mediaone.net
2001-01-20dh_new_group() does not return NULL. ok markus@Kevin Steves
2001-01-20fix SIGSEGV from -o ""; problem noted by jehsom@togetherweb.comTheo de Raadt
2001-01-20typoMarkus Friedl
2001-01-20pass the filename to auth_parse_options()Markus Friedl
2001-01-19mark remaining signal races which are difficult to fix, and fix a few partiallyTheo de Raadt
2001-01-19clear and free digest, make consistent with other code (use dlen); from stevesk@Markus Friedl
2001-01-19fix typo; from stevesk@Markus Friedl
2001-01-19move ssh1 definitions to ssh1.h, pathnames to pathnames.hMarkus Friedl
2001-01-19only auth-chall.c needs #ifdef SKEYMarkus Friedl
2001-01-19More fixes from Don Beusee:Todd C. Miller
- edit and other interactive commands have no stdin (making the command completely broken). - messages with "From " line having date format with -0800 type of timezone are not recognized correctly.
2001-01-18rename *-skey.c *-chall.c since the files are not skey specificMarkus Friedl
2001-01-181) removes fake skey from sshd, since this will be muchMarkus Friedl
harder with /usr/libexec/auth/login_XXX 2) share/unify code used in ssh-1 and ssh-2 authentication (server side) 3) make addition of BSD_AUTH and other challenge reponse methods easier.
2001-01-18log() is at pri=LOG_INFO, since LOG_NOTICE goes to /dev/console on many systemsMarkus Friedl
2001-01-18don't call rsa-keygen from signalhandler.Markus Friedl
re-schedule keygen at the time the key is actually used.
2001-01-18remove signal races, using flagsTheo de Raadt
2001-01-17use more strlcpy()Theo de Raadt
2001-01-17remove stdio code from handler, and _exit() at terminationTheo de Raadt
2001-01-17Don't dump core when a ``bad address'' error occurs and there is neitherPaul Janzen
a file nor a command underlying it. This fixes NetBSD PR 11543; the fix is from Aymeric Vincent <aymeric@netbsd.org>.
2001-01-17avoid C sequence point issues; found by cgd@netbsd.org using a developmentPaul Janzen
version of gcc.
2001-01-16indentTheo de Raadt
2001-01-16spellingTheo de Raadt
2001-01-16remove some statics. simpler handles; idea from nisse@lysator.liu.seMarkus Friedl
2001-01-16fix verbosity levels. pointed out by J.D. Carlson <jd@noc7.uchsc.edu>Eric Jackson
2001-01-16make "ssh-rsa" key format for ssh2 confirm to the ietf-drafts; from ↵Markus Friedl
galb@vandyke.com. note that you have to delete older ssh2-rsa keys, since they are in the wrong format, too. they must be removed from .ssh/authorized_keys2 and .ssh/known_hosts2, etc. (cd; grep -v ssh-rsa .ssh/authorized_keys2 > TMP && mv TMP .ssh/authorized_keys2) additionally, we now check that BN_num_bits(rsa->n) >= 768.
2001-01-16Changes from Don Beusee:Todd C. Miller
o escape From line with a leading '>' when needed o only print To: address and Subject lines if actually present o new variable 'allnet' to treat user@foo and user@bar as the same "user" o folders command now takes an optional argument like ls. o new "pipe" (|) command to pipe the message through an arbitrary command o make header display format the same as SunOS 4.1.3 /usr/ucb/mail o tilde commands work regardless of interactive mode. o fix "read: Interrupted system call" error by retrying if EINTR o expanded help file Changes by me: o read the help file via the PAGER as it is now more than 24 lines long
2001-01-16Changes from Don Beusee:Todd C. Miller
o escape From line with a leading '>' when needed o only print To: address and Subject lines if actually present o new variable 'allnet' to treat user@foo and user@bar as the same "user" o folders command now takes an optional argument like ls. o new "pipe" (|) command to pipe the message through an arbitrary command o make header display format the same as SunOS 4.1.3 /usr/ucb/mail o tilde commands work regardless of interactive mode. o fix "read: Interrupted system call" error by retrying if EINTR o expanded help file Changes by me: o read the help file via the PAGER as it is now more than 24 lines long
2001-01-15readable long listing for sftp-server, ok deraadt@Markus Friedl
2001-01-15rename must fail if newpath exists, debug off by defaultMarkus Friedl
2001-01-15use error() not stderr!Markus Friedl
2001-01-15use log() instead of stderrMarkus Friedl
2001-01-15typoTheo de Raadt
2001-01-15oopsTheo de Raadt
2001-01-13move callback to headerfileMarkus Friedl
2001-01-13support supplementary group in {Allow,Deny}GroupsMarkus Friedl
from stevesk@pobox.com
2001-01-13oopsMarkus Friedl
2001-01-13support supplementary group in {Allow,Deny}GroupsMarkus Friedl
from stevesk@pobox.com
2001-01-13WallMarkus Friedl
2001-01-13fix commentMarkus Friedl
2001-01-13reorder, typoMarkus Friedl
2001-01-13split out keepalive from packet_interactive (from dale@accentre.com)Markus Friedl
set IPTOS_LOWDELAY TCP_NODELAY IPTOS_THROUGHPUT for ssh2, too.
2001-01-13enable kerberos passwd auth in ssh2, use k_setpag; ok hin, dugsong, from ↵Markus Friedl
ksulliva@psc.edu
2001-01-13typo, from stevesk@sweden.hp.comMarkus Friedl
2001-01-13free() -> xfree(); fix memory leak; from stevesk@pobox.comMarkus Friedl
2001-01-13use SSH_DEFAULT_PORT; from stevesk@pobox.comMarkus Friedl
2001-01-13getopt() returns -1 not EOF; stevesk@pobox.comMarkus Friedl