summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2001-05-19typo in error messageKevin Steves
2001-05-19sshd command-line arguments and configuration file options thatKevin Steves
specify time may be expressed using a sequence of the form: time[qualifier], where time is a positive integer value and qualifier is one of the following: <none>,s,m,h,d,w Examples: 600 600 seconds (10 minutes) 10m 10 minutes 1h30m 1 hour 30 minutes (90 minutes) ok markus@
2001-05-19document MACs defaults with .DqMarkus Friedl
2001-05-19change preferredauthentication order toMarkus Friedl
publickey,hostbased,password,keyboard-interactive document that hostbased defaults to no, document order
2001-05-19sort options; Matthew.Stier@fnc.fujitsu.comMarkus Friedl
2001-05-19ftruncate() instead of open()+O_TRUNC like rcp.c doesMarkus Friedl
allows scp /path/to/file localhost:/path/to/file
2001-05-19Disable X11 forwarding if xauth binary is not found. Patch from NalinDamien Miller
Dahyabhai <nalin@redhat.com>; ok markus@
2001-05-18improved kbd-interactive support. work by per@appgate.com and meMarkus Friedl
2001-05-18adapt to use poolNiels Provos
2001-05-17no spaces in PreferredAuthentications; meixner@rbg.informatik.tu-darmstadt.deMarkus Friedl
2001-05-16more select() error fixes (don't set rfd/wfd to -1).Markus Friedl
2001-05-16check for open sessions before we call select(); fixes the x11 clientMarkus Friedl
bug reported by bowman@math.ualberta.ca
2001-05-16return comments for private pem files, too; report from nolan@naic.eduMarkus Friedl
2001-05-15X11 forwarding details improvedTheo de Raadt
2001-05-15Add missing memset() from one of the select() fixes. Also free existingTodd C. Miller
readfds if malloc/realloc fails.
2001-05-15Don't go beyond end of string.Marc Espie
Handles unterminated variables, and fixes regression test #10
2001-05-15thinko in my rewrite. Repair var:sh = somethingMarc Espie
Looks like nobody is using this anyways.
2001-05-14Ensure IFile str is always intialized, so that we can free it withoutMarc Espie
problems. Bug found by wilfried@.
2001-05-14No need to use calloc gratuitously.Angelos D. Keromytis
2001-05-14Use warn() consistently.Angelos D. Keromytis
2001-05-14Use the sysctl-based diskstats for live kernels. deraadt@ okAngelos D. Keromytis
2001-05-14long -> int64_t for tty statisticsAngelos D. Keromytis
2001-05-14Remove ugly empty line.Angelos D. Keromytis
2001-05-12readlink does not NULL-terminate; mhe@home.seMarkus Friedl
2001-05-11-1 -> MAP_FAILEDArtur Grabowski
2001-05-11-1 -> MAP_FAILEDArtur Grabowski
2001-05-11add unset_nonblock for stdout/err flushing in client_loop().Markus Friedl
2001-05-11cleanupTheo de Raadt
2001-05-11Use sysctl(3) to retrieve nchstats, forkstat, nselcoll, and kmemstatsAngelos D. Keromytis
if the "default" files (running system) were specified for the ksyms and memory dump. Eventually, it won't be necessary for vmstat to be privileged.
2001-05-11Fix stray comma.Angelos D. Keromytis
2001-05-10Typo; physial -> physical.Aaron Campbell
2001-05-09fix prototype; J.S.Peatfield@damtp.cam.ac.ukMarkus Friedl
2001-05-09fix -R for protocol 2, noticed by greg@nest.cx.Markus Friedl
bug was introduced with experimental dynamic forwarding.
2001-05-08no need for xmalloc.h, thanks to espie@Markus Friedl
2001-05-08Use addargs() in sftp plus some clean up of addargs(). OK Markusmouring
2001-05-08adds correct error reporting to async connect()sMarkus Friedl
fixes the server-discards-data-before-connected-bug found by onoe@sm.sony.co.jp
2001-05-07some complex situations need those functions to be reentrant, hence noMarc Espie
static VarPatterns... Old make could use dynamic variables because everything was jumbled into one single function.
2001-05-07avoid closing the same file twice. parse module assumes ownership ofMarc Espie
file handles it's passed to. (this is apparently harmless on BSDs, but is still a bug).
2001-05-07Even though str_concati is supposed to handle intervals, it was stillMarc Espie
assuming '\0' at the end. -> importance of proper make bug reports, this was first diagnosed as a for loop issue...
2001-05-07remove waitpid-related XXX's -- this is OKTodd C. Miller
2001-05-07Avoid excessive malloc/free for select in readdata()Todd C. Miller
2001-05-07Use a smaller buffer in fmttime() since the date string is of aTodd C. Miller
known fixed size.
2001-05-07Fix select(2) usage.Todd C. Miller
2001-05-06use atomicio for flushing stdout/stderr bufs. thanks to jbw@izanami.cee.hw.ac.ukMarkus Friedl
2001-05-06cli_read() fails to catch SIGINT + overflow; from obdb@zzlevo.netMarkus Friedl
2001-05-06Use const for 'prompt'. Brought over from portable tree.mouring
2001-05-05Fix Makefile.sunos5.gcc so that it builds sup correctly on Solaris 8Todd C. Miller
Fix some -Wall found on Solaris Fix some uid_t/gid_t stuff I missed before
2001-05-05Solaris has strerror()Todd C. Miller
Remove unneeded #include <util.h> and -lutil
2001-05-05typos, grammarKevin Steves
2001-05-05Document for loop mechanics for several variables.Marc Espie
Idea taken from NetBSD. implementation completely different, as our loop implementation diverged a while back.