Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-10-06 | Print commands in a prettier fashion. | Aaron Campbell | |
2000-10-05 | hppa not yet | Michael Shalayeff | |
2000-10-04 | Fixes a format string error in the kill (k) command; vort@wiretapped.net | Todd C. Miller | |
2000-10-03 | do not resolve canonname, i have no idea why this was added oin ossh | Markus Friedl | |
2000-10-03 | move fake-auth from auth1.c to individual auth methods, disables s/key in ↵ | Markus Friedl | |
debug-msg | |||
2000-10-03 | hmac->mac | Markus Friedl | |
2000-10-03 | More format string paranoia; deraadt@ ok | Aaron Campbell | |
2000-09-30 | allow loglevel debug | Markus Friedl | |
2000-09-28 | debug -> debug2 cleanup | Markus Friedl | |
2000-09-27 | merged with NetBSD, 20000927 and fixes PR 1421; ok millert@ | Dan Harnett | |
2000-09-27 | use key_type() | Markus Friedl | |
2000-09-26 | use debug2 | Markus Friedl | |
2000-09-26 | more cleanup and have nlog() deal with errno now as well. | Eric Jackson | |
2000-09-26 | no need to reset h_errno | Eric Jackson | |
do the cmdline correctly, deal with \n and \t fix up nlog() use arc4random instead of srandom()/random() | |||
2000-09-26 | Remove unnecessary arguments to .Nm macro. | Aaron Campbell | |
2000-09-26 | Do not permit non-printable characters in the passwd file; deraadt@ ok | Aaron Campbell | |
2000-09-26 | fix minor typo | Eric Jackson | |
2000-09-26 | no need to use goto.. | Eric Jackson | |
2000-09-26 | Implement a function for errors | Eric Jackson | |
it pays attention to h_error so we now have no need to handle this ourselves. | |||
2000-09-26 | some warnings should only be shown with -v | Eric Jackson | |
2000-09-26 | remove -e option, which wasnt on anyway | Eric Jackson | |
2000-09-26 | Alot of cleanups to netcat | Eric Jackson | |
use errx/warn instead of homegrown functions indent properly to make the code readable get rid of generic.h as its not used dont declare optarg register is depreciated get rid of undocumented options -a and -e throw out IP_OPTIONS code for now, its not on by default and doesnt work properly make usage more like other bsd commands | |||
2000-09-22 | - move break from loop on EOF in order to make cap_mkdb not ignore the final | Christian Weisgerber | |
record in terminfo mode - while we're here fix indentation, spelling okay millert@ | |||
2000-09-21 | add context to dispatch_run | Markus Friedl | |
2000-09-21 | change login logic in ssh2, allows plugin of other auth methods | Markus Friedl | |
2000-09-21 | utime() to utimes(); mouring@pconline.com | Markus Friedl | |
2000-09-21 | bug compat for old ssh.com software | Markus Friedl | |
2000-09-21 | typo | Markus Friedl | |
2000-09-21 | typo | Markus Friedl | |
2000-09-20 | use TM_YEAR_BASE and set seconds to zero in obsolescent "compatibility" case; | Paul Janzen | |
from NetBSD. | |||
2000-09-20 | usage() if too many arguments | Paul Janzen | |
2000-09-20 | Change the message if the S/Key sequence has expired. millert@ ok | Paul Janzen | |
2000-09-20 | fix pasto and comma splice | Paul Janzen | |
2000-09-20 | Y2K fix for obsolescent time format: found by Camiel Dobbelaar. | Paul Janzen | |
2000-09-19 | Display SPD entries. | Angelos D. Keromytis | |
2000-09-17 | yes no; ok niels@ | Markus Friedl | |
2000-09-17 | fix DEBUG_KEXDH | Markus Friedl | |
2000-09-15 | check return value for setenv(3) for failure, and deal appropriately | Theo de Raadt | |
2000-09-14 | typo | Markus Friedl | |
2000-09-14 | This kills the last old hashing table, in arch.c | Marc Espie | |
Slight optimizations: instead of storing archive members, just keep the modification time, as we don't care for the rest of the archive information. Lazily compute mtime, stash ascii date instead, and convert to mtime when needed (storing an out_of_date value to mark the unconverted values). Archive handling is atrocious and need some clean-up. Thanks to miod@ who took the time to review those patches. | |||
2000-09-14 | Introduce a few macros to handle timestamps in an abstract way. | Marc Espie | |
Replace the time stamp hash in dir.c with an open hashing structure. In doing so, remove some nasty casts, simplify code a bit: Dir_MTime can return a modification time, since make does not make a distinction between out-of-date and non-existent files. | |||
2000-09-14 | Replace the old hash used to hold file names within a directory with | Marc Espie | |
open hashing. An interesting optimization is that the open hashing interface is more fine-grained, hence we can compute the correct hash value at the start of Dir_FindFile, and reuse it for each hash structure into which we look (the effect is measurable on large directories along with objdir/VPATH). Remove a few unnecessary Lst_Open/Lst_Close that serve no purpose except obfuscating the code. The interface to dir.h changes slightly, hence tedious includes changes... | |||
2000-09-14 | - new DirReadDir internal function, that just reads a directory from | Marc Espie | |
the disk or from a cache. - use it in Dir_AddDir, and directly to set up dot. - change Dir_AddDir to use string intervals, as this simplifies dependend functions. - set up an open-hashing cache for opened directory names. - add_dirpath() function in main, to simplify code. - simplify cleaning-up directories, as Dir_ClearPath is overkill. | |||
2000-09-14 | Use the new hash scheme to store the target nodes. | Marc Espie | |
Scrap the list of all targets: it only slows make down. The only visible difference is that the list of all targets is not shown in order when debugging. | |||
2000-09-14 | Clean-up, systematic use of UNUSED, white space... | Marc Espie | |
2000-09-14 | Two new functions: | Marc Espie | |
iterate_words: light-weight equivalent to brk_string, which does not need to copy the string, and does not do \ interpretation which are only needed for the string. escape_dup: handles escape sequence in a systematic way. This speeds up variable modifiers. This also makes .for loops more consistent, as they use the same definition of `a word' as the rest of make. | |||
2000-09-14 | Some systematic clean-up. | Marc Espie | |
- UNUSED macro that expands to __attribute__((unused)) for gcc - move rcsid around so that they can be tagged UNUSED. - activate -Wunused. - use UNUSED instead of kludgy junk for function arguments. - add extern to all extern prototypes. - update comments in lst.h. - clean up var.c a little bit, constifying arguments, updating comments... | |||
2000-09-12 | multiple debug levels | Markus Friedl | |
2000-09-12 | a few more comments about it being ARC4 not RC4 | Theo de Raadt | |
2000-09-12 | work around Art's lack of testing | Theo de Raadt | |