summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2002-06-22section 5 not 4 for ssh_configKevin Steves
2002-06-22correct commentKevin Steves
2002-06-21OpenSSH_3.3Markus Friedl
2002-06-21o Resize nicely when we receive SIGWINCHTodd C. Miller
o Also change some 0-2 to *_FILENO
2002-06-21Don't initialise compression buffers when compression=no in sshd_config;Damien Miller
ok Niels@
2002-06-21fix bad usage of strlcpy()'s return value. (made pointers pointVincent Labrecque
beyond the boundaries of buffers) ok deraadt@
2002-06-21remove the "extern" for a variable that does not exist anymore.Vincent Labrecque
2002-06-20add CompressionMarkus Friedl
2002-06-20allow Compression=yes/no in sshd_configMarkus Friedl
2002-06-20typoKevin Steves
2002-06-20refer to config file man pageKevin Steves
2002-06-20ssh_config(5)Kevin Steves
2002-06-20move configuration file options from ssh.1/sshd.8 toKevin Steves
ssh_config.5/sshd_config.5; ok deraadt@ millert@
2002-06-20Add a -s option to enable the smooth scrolling in revision 1.10Todd C. Miller
The default behavior remains unchanged.
2002-06-20undo last commit; deraadt@Oleg Safiullin
2002-06-20scrolling support.Oleg Safiullin
ok millert@
2002-06-20KNFify the return (return x -> return (x))Vincent Labrecque
remove an "else" from last commit, it didn't make a lot of sense.
2002-06-20 some KNFVincent Labrecque
2002-06-19use macro to determine link-local multicast addrJun-ichiro itojun Hagino
2002-06-19initialize some undo-related variables.Vincent Labrecque
ok deraadt@
2002-06-19add an undo insert record on insert-file. this makes insert-file undoable.Vincent Labrecque
ok deraadt@
2002-06-19make the monitor sync the transfer ssh1 session key;Markus Friedl
transfer keycontext only for RC4 (this is still depends on EVP implementation details and is broken).
2002-06-19decode embedded scopeid on -inalv multicast address printingJun-ichiro itojun Hagino
2002-06-19mark which nlist[] kmem entries are not needed in the sysctl case, and which areTheo de Raadt
2002-06-19Poach a commit; error(1) groks yacc output now...Todd C. Miller
2002-06-19have yacc spit out c compiler-like error messages, so that utilities whichTheo de Raadt
expect those can cope. I've wanted this for >12 years.
2002-06-19KNF done automatically while reading....Theo de Raadt
2002-06-18pull in missing includesTheo de Raadt
2002-06-18From bjh21@NetBSD:Jason Wright
- When open(2) fails, it returns -1, not NULL. - When we're assigning to a long, use 0 rather than NULL.
2002-06-18ANSITheo de Raadt
2002-06-18revoke privs after kvm_openfilesTheo de Raadt
2002-06-17make this readable. If I broke something, someone else gets to fix it now ↵Theo de Raadt
that we can read it
2002-06-17KNFTheo de Raadt
2002-06-17make usage like man pageTheo de Raadt
2002-06-16use TAILQ_xx macro. from lukem@netbsd. markus okJun-ichiro itojun Hagino
2002-06-15enlarge ID column to fix output alignment.Matthieu Herrb
ok deraadt@, millert@.
2002-06-15remove the CONSTRAIN_IDENTITY messages and introduce a newMarkus Friedl
ADD_ID message with contraints instead. contraints can be only added together with the private key.
2002-06-15fix stupid typoMarkus Friedl
2002-06-15break agent key lifetime protocol and allow other contraints for key usage.Markus Friedl
2002-06-14spelling; from Brian Poole <raj@cerias.purdue.edu>Todd T. Fries
2002-06-13synch comments with actual code.Marc Espie
Okay miod@.
2002-06-12a real pid_t cleanup.Mike Pechkin
espie@ ok for make/, deraadt@ one extra eye, millert@ ok
2002-06-12ssh_connect returns 0 on successMarkus Friedl
2002-06-11remove unused cruft.Markus Friedl
2002-06-11This is the first step in sanitizing the conditional parser.Marc Espie
Change the conditional recognition algorithm: scan for a sequence of alphabetic characters, hash it, and compare it against a small table (using ohash functions). This makes Cond_Eval entry more logical, and allows for some shortcuts in recognizing .include, .for, .undef. This also means that conditionals must have an intervening blank between the keyword and the actual test, e.g., .ifA will no longer work. (but no-one actually uses this, and it's highly obfuscated) Okay miod@.
2002-06-11Make sure kerberosV/kafs.h is picked up if kerberosIV/kafs.h is not removed.Hans Insulander
ok markus@
2002-06-11use "ntop" only after initializedJun-ichiro itojun Hagino
2002-06-11Fail if no symbol table is found, don't crash.Artur Grabowski
2002-06-11kill err(3) newlines; ok miod@, deraadt@Jason Peel
2002-06-11Remove \n from warnx(3). ok deraadt@Thomas Nordin