Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-03-02 | kill #ifdef REMOTE stuff that only obfuscates issues. | Marc Espie | |
ok millert@, miod@ | |||
2002-03-01 | Sort -df, not sort -f | Todd C. Miller | |
2002-03-01 | spell command from 4.4BSD, now freed by Caldera. | Todd C. Miller | |
I have made some significant changes: o spell no longer uses hashed files. The algorithm for generating the hashed files breaks down for large files. Instead, I use the same approach as look(1) and do binary searches of mmap(2)ed files which has acceptable performance. A side effect of this is that spell can now search multiple word lists. o The spell binary has been renamed to "spellprog" so as to not conflict with the spell shell script. This is consistent with other operating systems. o The putsuf() and putword() functions have been renamed to trypref() and tryword() respectively for consistency with modern versions and for general sanity. o the spell front-end shell script has been completely rewritten o The code has been ANSIfied and re-style(9)d spell currently must be compiled with -fwriteable-strings to make the -b option work. This should be fixed. | |||
2002-03-01 | disable undo until it is fixed to be (1) correct and (2) not crash like it ↵ | Theo de Raadt | |
does now | |||
2002-03-01 | undo the 'delay hostname lookup' change | Markus Friedl | |
match.c must not use compress.c (via canonhost.c/packet.c) thanks to wilfried@ | |||
2002-03-01 | Fix an err() that should really be errx() | Todd C. Miller | |
2002-02-28 | change the text following the preprocessor directives '#else' and | Dan Harnett | |
'#endif' into comments. ok millert@ | |||
2002-02-28 | All the -m options were not being displayed, use .Oo and .Oc to | Todd C. Miller | |
avoid number of arguments limit. Also, file is optional; Brian Poole | |||
2002-02-28 | log user not allowed details, from dwd@bell-labs.com; ok markus@ | Kevin Steves | |
2002-02-28 | -u0 DNS for user@host | Kevin Steves | |
2002-02-28 | DenyUsers allows user@host pattern also | Kevin Steves | |
2002-02-28 | delay hostname lookup until we see a ``@'' in DenyUsers and AllowUsers | Kevin Steves | |
for sshd -u0; ok markus@ | |||
2002-02-28 | another bug | Todd C. Miller | |
2002-02-28 | add support for SOCKS4 with option -X socks_version, default is 5; ok ericj@ | Markus Friedl | |
2002-02-28 | add some const EVP_MD for openssl-0.9.7 | Markus Friedl | |
2002-02-28 | Fix size parameter to memmove() (off by one) introduced in last commit. | Todd C. Miller | |
Now I can sleep. | |||
2002-02-28 | strcpy() does not guarantee to handle overlapping copies, use memmove() instead. | Todd C. Miller | |
2002-02-28 | This is the 4.4BSD deroff, now freed by Caldera. | Todd C. Miller | |
I have ANSIfied, stylized, and Wallified it and converted it use "modern" things such as getopt(). I also fixed some obvious buffer overflows and updated the man page. | |||
2002-02-27 | remove unneeded casts in [gs]etsockopt(); ok markus@ | Kevin Steves | |
2002-02-27 | ANSI decls. okay millert@ | Marc Espie | |
2002-02-26 | use socklen_t | Kevin Steves | |
2002-02-26 | no, look closely. the comma was highlighted. split .Ic even more | Theo de Raadt | |
2002-02-26 | > Ic cannot have that many arguments; spotted by mouring@etoh.eviladmin.org | mouring | |
Last Ic on the first line should not have a space between it and the final comma. | |||
2002-02-26 | Ic cannot have that many arguments; spotted by mouring@etoh.eviladmin.org | Theo de Raadt | |
2002-02-26 | close PR 2311 | Marc Espie | |
2002-02-26 | KNF; from Dennis Schwarz <denniss@hoofbite.net>; closes pr#2432 | Todd T. Fries | |
2002-02-26 | keep undo records in the BUFFER structures insteda of having a huge list. | Vincent Labrecque | |
2002-02-25 | more u_* fixes | Markus Friedl | |
2002-02-25 | use mktemp, don't bother with creating a directory when only one tmp file is | Peter Valchev | |
needed; ok millert, espie | |||
2002-02-25 | mark getc uses with regard to int and EOF | Theo de Raadt | |
2002-02-25 | getchar returns an int | Theo de Raadt | |
2002-02-24 | disable Nagle in connect_to() and channel_post_port_listener() (port | Kevin Steves | |
forwarding endpoints). the intention is to preserve the on-the-wire appearance to applications at either end; the applications can then enable TCP_NODELAY according to their requirements. ok markus@ | |||
2002-02-24 | signed vs. unsigned: make size arguments u_int, ok stevesk@ | Markus Friedl | |
2002-02-24 | typo in comment | Markus Friedl | |
2002-02-24 | make 'cp' unsigned and merge with 'ucp'; ok stevesk@ | Markus Friedl | |
2002-02-24 | early close(), missing free; ok stevesk@ | Markus Friedl | |
2002-02-24 | use u_char* here; ok markus@ | Kevin Steves | |
2002-02-24 | bad doug, bad bad bad doug; zyrnix@users.sourceforge.net | Theo de Raadt | |
2002-02-24 | getchar(3) returns an int, not a char | Peter Valchev | |
2002-02-23 | more cleaning | Theo de Raadt | |
2002-02-23 | -Wall; zyrnix@users.sourceforge.net | Theo de Raadt | |
2002-02-23 | don't allow garbage after payload. | Markus Friedl | |
2002-02-23 | No more POOL_EXPOSE. | Artur Grabowski | |
2002-02-22 | include a siginfo_t with ktrace PSIG information, so that kdump can print | Theo de Raadt | |
fault addresses and other information. (a small bug exists: in some signal delivery cases, two PSIG records may be inserted, because postsig() is unaware a PSIG record has already been placed. but this small bug can stay since the siginfo_t information helps us find and fix other bugs) | |||
2002-02-22 | overwrite fatal() in ssh-keyscan.c; fixes pr 2354; ok provos@ | Markus Friedl | |
2002-02-22 | if file mode known, try to avoid a race.. i think. millert spotted a bug in ↵ | Theo de Raadt | |
my first draft | |||
2002-02-21 | "rephrase" the loop's condition, gets rid of an ugly operation. | Vincent Labrecque | |
2002-02-21 | KNF | Theo de Raadt | |
2002-02-21 | use sizeof w/ defines; niklas@ millert@ ok. | Federico G. Schwindt | |
2002-02-21 | document undo | Theo de Raadt | |