summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2000-02-11delay MD5 computation until client sends response, free() early, cleanup.Markus Friedl
2000-02-10make mkdep -p work with newer gcc. okayed a very long time ago by fries@ (do ↵David Leonard
you remember, todd?) actually uses todd's relaxed regex
2000-02-07My copyright, not Berkeley's and some minor working tweaks.Todd C. Miller
2000-02-06typoMarkus Friedl
2000-02-05fix -in printing on IPv6 (network portion was not masked properly).Jun-ichiro itojun Hagino
enable scopeid for -in. don't truncate output on -inv.
2000-02-05show scopeid on "Trying foo...".Jun-ichiro itojun Hagino
2000-02-05missing xfree()Markus Friedl
2000-02-05Make hoststrip build correctly if cross-compilingNiklas Hallqvist
2000-02-04typoMarkus Friedl
2000-02-04enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@Markus Friedl
2000-02-02Comment slightly more.Marc Espie
2000-02-02Optimize common case.Marc Espie
outputstr could be called for one character-long string. Looking at profiling output, it WAS called for one-character long strings most of the time, like 95% of calls... Rework logic slightly to know about that case and output the character directly. Worth about 10%. Reviewed by Paul Janzen.
2000-02-02Bug-fix: make should behave sensibly when presented with negative times...Marc Espie
- let *_MTime return booleans, as that's what they're used for, the time_t is set as a side effect. - use OUT_OF_DATE for a date starting point, set it at the origin of time.
2000-02-02eight spaces does not make a tabDavid Leonard
2000-02-01int atomicio -> ssize_t (for alpha). ok deraadt@David Leonard
2000-02-01Work-around for lame servers that return `19100' for a date.Marc Espie
Based on NetBSD patch, slightly trimmed since we don't use the fractional part yet...
2000-02-01oops, fix comment, too.Markus Friedl
2000-02-01no need to extern int errno if errno.h is includedTheo de Raadt
2000-01-31delay close() of pty until the pty has been chowned back to rootMarkus Friedl
2000-01-31remove unnecessary, ignored error. ok millert@David Leonard
2000-01-31massive indent passTheo de Raadt
2000-01-30Clean up a few issues with fsplit, including security of temp files.Marc Espie
Thanks to Matthieu Herb, Paul Janzen, and Ted Scharlemann.
2000-01-29remove #if 0'ed portion (not necessary due to use of getaddrinfo)Jun-ichiro itojun Hagino
2000-01-281.6.2p1Todd C. Miller
2000-01-27er, oops, types must be same for multiple assignmentTheo de Raadt
2000-01-27deny login if shell does not exist or is not executable at allMarkus Friedl
make no-port-forwarding for RSA keys deny both -L and -R style fwding
2000-01-27enable IPv6 support.Jun-ichiro itojun Hagino
2000-01-26if yygrowstack() fails to allocate memory, free all yacc memory allocations ↵Theo de Raadt
and reset for future yyparse() calls... obscure eh
2000-01-25Kludge to fix timestamp bug.Marc Espie
2000-01-24allow '.' in usernames; from jedgar@fxp.orgMarkus Friedl
2000-01-24do not connect() if request has been denied.Markus Friedl
2000-01-24don't panic if client behaves strange. ok deraadt@Markus Friedl
2000-01-24first cut at indent.. more to comeTheo de Raadt
2000-01-24sudo 1.6.2Todd C. Miller
2000-01-23OpenSSH-1.2.2Markus Friedl
2000-01-22Some minor doc updates that should have gotten commited ages ago.Todd C. Miller
2000-01-22getsockname() requires initialized tolen; andy@guildsoftware.comTheo de Raadt
2000-01-22Add a couple of useful examples.Aaron Campbell
2000-01-22ie. -> i.e.,Aaron Campbell
2000-01-21instead of blocking SIGINT, catch it ourselves, so that we can clean theTheo de Raadt
tty modes up and kill ourselves -- instead of our process group leader (scp, cvs, ...) going away and leaving us in noecho mode. people with cbreak shells never even noticed..
2000-01-21Deal with getcwd() returning NULL.Todd C. Miller
Problem noted by Oleg Safiullin <form@vell.nsc.ru>
2000-01-21ip4 -> ipipAngelos D. Keromytis
2000-01-21Deal with getcwd() returning NULL. This code is not currentlyTodd C. Miller
compiled but dixing it now means that it won't get flagged again in a future audit. Noted by Oleg Safiullin <form@vell.nsc.ru>
2000-01-20Use sysopen() when opening recover files. This is purely paranoiaTodd C. Miller
since we check that the filename matches '^recover' and hence the first character cannot play games with perl's magic open().
2000-01-20Fix problem pointed out by FreeBSD, regen temp file name each time, toMarc Espie
avoid races. Make use of basic Unix semantics, namely you can unlink a file while holding open fd on the data. Avoid all the mess of having to track useless file names around.
2000-01-20log with level log() not fatal() if peer behaves badly.Markus Friedl
2000-01-20use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;Markus Friedl
from Holger.Trapp@Informatik.TU-Chemnitz.DE
2000-01-20Default value for -s option is ARG_MAX - 4096, not - 2048; enamiTheo de Raadt
2000-01-19.MAIN is nothing special.Marc Espie
Silently ignoring all commands but the first set in a normal dependency is a generic `feature' of make.
2000-01-19Better summary line, in keeping with other *stat commands; from NetBSDPaul Janzen