summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2003-08-28remove kerberos support from ssh1, since it has been replaced with GSSAPI;Markus Friedl
but keep kerberos passwd auth for ssh1 and 2; ok djm, hin, henning, ...
2003-08-28don't like libgss/krb5 twice, fixes non-KERBEROS builds; pmbas@samhaim.orgMarkus Friedl
2003-08-27oopsTed Unangst
2003-08-27fix memory leaks. pr3416 from Patrick Latifi <patrick.l@hermes.usherb.ca>Ted Unangst
2003-08-27install sed USD;Jason McIntyre
ok mickey@
2003-08-27RNF_IGNORE can corrupt the radix tree when an interface is down, itHenric Jungheim
makes routing lookups slightly more expensive, and serves no useful purpose. ok itojun@ tedu@
2003-08-26fix passwd auth for 'username leaks via timing'; with djm@, original patches ↵Markus Friedl
from solar
2003-08-26mark cloned route with RTF_CLONED. remove RTF_CLONED route when clone parentJun-ichiro itojun Hagino
disappers. deraadt ok
2003-08-25fprintf->logit to silence login banner with "ssh -q"; ok markus@Damien Miller
2003-08-25fix div by zero when listing for filename lengths longer than width.Federico G. Schwindt
markus@ ok.
2003-08-24re-organize Makefiles so that static builds actually workTheo de Raadt
2003-08-2464 bit cleanups; markus okTheo de Raadt
2003-08-22add Simon WilkinsonMarkus Friedl
2003-08-22nuke "kerberos-2@ssh.com"Markus Friedl
2003-08-22remove support for "kerberos-2@ssh.com"Markus Friedl
2003-08-22support GSS API user authentication; patches from Simon Wilkinson,Markus Friedl
stripped down and tested by Jakob and myself.
2003-08-21use pollTheo de Raadt
2003-08-20Add curly braces {} to the list of special characters in egrep mode.Todd C. Miller
From Piotr Domagalski, closes PR 3405
2003-08-20typoMichael Shalayeff
2003-08-19number of mbuf clusters is not the same as number of pages allocated for ↵Michael Shalayeff
'em; noticed by dsb@uvm.poi.dvo.ru
2003-08-18when given only an executable name without a valid path, resolve theJean-Francois Brousseau
actual executable path from the PATH environment, so the calls to access() and stat() work correctly when loading the process ok art@
2003-08-18We distribute less under a 2-term BSD-style license. Update COPYRIGHTTodd C. Miller
section based on less's LICENSE file.
2003-08-18We distribute less under a 2-term BSD-style license. Update COPYRIGHTTodd C. Miller
section based on less's LICENSE file.
2003-08-18fix spelling of --initial-tabDavid Krause
ok otto@
2003-08-17fix ptr arythmetics in core_write(); from aaron@Michael Shalayeff
2003-08-16Update HISTORY section. Full gzip compat was added in 3.4 and theTodd C. Miller
'g' stands for gratis.
2003-08-16missing comma in non-ansi mode; spotted by pvalchevTheo de Raadt
2003-08-16t'was brillingMichael Shalayeff
2003-08-16spacingTheo de Raadt
2003-08-15make dired work more like emacs. (well, make it _work_, and then add aVincent Labrecque
bunch of missing commands)
2003-08-15remove extra \n in {warn,err}{,x} callsTheo de Raadt
2003-08-15 actually extract the filename off the ls line. makes dired *slightly*Vincent Labrecque
more useful.
2003-08-15Fix typo (errx vs. err) for malloc failures; Andrey MatveevTodd C. Miller
2003-08-15Add license from patch.c to original source files missing a license.Otto Moerbeek
ok deraadt@
2003-08-14make 9-char login names not stretch the line; millert okTheo de Raadt
2003-08-14exit after primetest, ok djm@Markus Friedl
2003-08-13Based on what otto@ said on icb. The expensive thing in diff isTodd C. Miller
newcand() (this is what blows up the memory usage so badly). Instead of counting how many times we go through the loop, count how many times we called newcand(). I renamed loopcount -> numtries since it is no longer the number of loop runs. This fixes espie@'s regression. tedu@ OK
2003-08-13socks4->socks, since with support both 4 and 5; dtucker@zip.com.auMarkus Friedl
2003-08-13remove RhostsAuthentication; suggested by djm@ before; ok djm@, deraadt@,Markus Friedl
fgsch@, miod@, henning@, jakob@ and others
2003-08-13use more portable tcsendbreak(3) and ignore break_length;Markus Friedl
ok deraadt, millert
2003-08-12Fix no newline at end of file case for Plan B.Otto Moerbeek
ok millert@ tedu@
2003-08-12Clean up obsolete kerberos 4 stuffHans Insulander
ok millert@
2003-08-12Back out last commit, p->name is not always a malloc'ed object.Todd C. Miller
Pointed out by itojun@.
2003-08-12plug memory leak; Patrick LatifiTodd C. Miller
2003-08-11The empty() function basically effects a poll, so replace it withTodd C. Miller
real poll(). Gets rid of another static select(). OK deraadt@
2003-08-11use poll to replace the fd_set overflows. some input from fgsch; millert okTheo de Raadt
2003-08-11Convert to use poll(2) instead of static select.Todd C. Miller
Input from deraadt@ and fgsch@; Ok deraadt@
2003-08-11Cosmetic changes to make the code a tad more readable:Todd C. Miller
o constify rcsid and copyright o use warn/err instead of doing it by hand
2003-08-11typo, pr3396 from piotr domagalskiTed Unangst
2003-08-10Do not add an extra newline at the end if the last line of the inputOtto Moerbeek
file contains no newline and the diff does not touch the last line. Contributions from millert@. ok millert@ tedu@