summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2001-04-30Better hints handling (used for sorting package lists):Marc Espie
- nodes without a hint should be fully transparent. The make_transparent procedure is potentially slow, but in reality, it's very fast. - don't automatically add an order to un-hinted nodes, so that they are truely transparent. Better memory allocation: split the hash of nodes into a single array instead of duplicating the memory requirements. Okay Todd.
2001-04-30ssh-2.0.10 has the weak-key-bug, too.Markus Friedl
2001-04-30allow interop with weaker key generation used by ssh-2.0.x, x < 10Markus Friedl
2001-04-30right value for X_NSELCOLLArtur Grabowski
2001-04-30Ooops! Undo breakage I introduced in 1.48.Artur Grabowski
2001-04-30implement 'ssh -b bind_address' like 'telnet -b'Markus Friedl
2001-04-30don't freeaddrinfo if getaddrinfo fails; ok deraadt@,itojun@Markus Friedl
2001-04-30CLSIZE is 1 on all archs and will go away soon.Artur Grabowski
2001-04-29Zero a buffer prior to passing it to readlink() as readlink()Todd C. Miller
does not append a NUL itself.
2001-04-29spelingTodd C. Miller
2001-04-29labels should precede actual code, not braces; from NetBSDTodd C. Miller
2001-04-29Add a bunch of old revision history comments that we are missing toTodd C. Miller
make diffing easier. No code changes...
2001-04-29include string.h not strings.hTodd C. Miller
2001-04-29more ssh.com-2.0.x bug-compat; from per@appgate.comMarkus Friedl
2001-04-29fix whitespaceMarkus Friedl
2001-04-29Use S_ISXXX macros where possible instead of doing this by handTodd C. Miller
Noticed while diffing against NetBSD version
2001-04-29Add comment chars to (or just remove) bare words after #endif/#else for ANSI.Todd C. Miller
Noticed while diffing against NetBSD version
2001-04-29If errmsg() is passed a negative argument return strerror(errno)Todd C. Miller
Noticed while diffing against NetBSD version
2001-04-24OpenSSH-2.9Markus Friedl
2001-04-23remove debugMarkus Friedl
2001-04-23allow public key for -e, tooMarkus Friedl
2001-04-22document hostbased and other cleanupMarkus Friedl
2001-04-22style, noted by stevesk; sort flags in usageMarkus Friedl
2001-04-22xref draft-ietf-secsh-*Markus Friedl
2001-04-22rename arguments -x -> -e (export key), -X -> -i (import key)Markus Friedl
xref draft-ietf-secsh-publickeyfile-01.txt
2001-04-22scp > 2GB; niles@scyld.com; ok deraadt@, djm@Markus Friedl
2001-04-22typos spotted by stevesk@; ok deraadt@Damien Miller
2001-04-21Spellingmouring
2001-04-20typoMarc Espie
2001-04-20systat does not use /dev/drumTodd C. Miller
2001-04-20set non-privileged gid before uid; tholo@ and deraadt@Markus Friedl
2001-04-20remove old information from ssh-1.2.12Markus Friedl
refer to http://www.openssh.com/portable.html and tell how to install OpenSSH on an OpenBSD system, ok deraadt@
2001-04-20Split out and improve escape character documentation, mention ~R inDamien Miller
~? help text; ok markus@
2001-04-19use local variable, no function call needed.Markus Friedl
(btw, hostbased works now with ssh.com >= 2.0.13)
2001-04-18error->debug; noted by fries@Markus Friedl
2001-04-18more ssh v2 hostbased-auth interop: ssh.com >= 2.1.0 works nowMarkus Friedl
(however the 2.1.0 server seems to work only if debug is enabled...)
2001-04-18no longer constMarkus Friedl
2001-04-18use FDQN with trailing dot in the hostbased auth packets, ok deraadt@Markus Friedl
2001-04-18call askpass from ssh, too, based on work by roth@feep.net, ok deraadtMarkus Friedl
2001-04-18Fix `hinted' options: set initial order to maximal, so that any hintMarc Espie
will be first. Also, keep order around between hints file and reading normal pairt, so that this option actually is useful.
2001-04-18Fix typo reported in PR/1779Ian Darwin
2001-04-18debug->debug3Markus Friedl
2001-04-17move auth_approval to do_authenticated().Markus Friedl
do_child(): nuke hostkeys from memory don't source .ssh/rc for subsystems.
2001-04-17undo socks5 and https support since they are not really used andMarkus Friedl
only bloat ssh. remove -D from usage(), since '-D' is experimental.
2001-04-17add HostKeyAlgorithms; based on patch from res@shore.net; ok provos@Markus Friedl
2001-04-17handle EINTR/EAGAIN on read; ok deraadt@Markus Friedl
2001-04-17check for key!=NULL, thanks to costaMarkus Friedl
2001-04-16better safe than sorry in later mods; yongari@kt-is.co.krTheo de Raadt
2001-04-16Split motd and hushlogin checks into seperate functions, helps for portable.Damien Miller
From Chris Adams <cmadams@hiwaay.net>; ok markus@
2001-04-16xrealloc dealing with ptr == nULL; mouringTheo de Raadt