summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2002-06-02mrtstat members are u_long, so use %lu not %ldJun-ichiro itojun Hagino
2002-06-02minor KNFTheo de Raadt
2002-06-02KNFTheo de Raadt
2002-06-01more snprintfTheo de Raadt
2002-06-01cleanupsTheo de Raadt
2002-05-31recommit strlcpy/snprintf diff after i found my bugTheo de Raadt
2002-05-31pad received signature with leading zeros, because RSA_verify expectsMarkus Friedl
a signature of RSA_size. the drafts says the signature is transmitted unpadded (e.g. putty does not pad), reported by anakin@pobox.com
2002-05-31add comment:Markus Friedl
key_verify returns 1 for a correct signature, 0 for an incorrect signature and -1 on error. CVS ----------------------------------------------------------------------
2002-05-31move Authmethod definitons to per-method file.Markus Friedl
2002-05-31extent ssh-keysign protocol:Markus Friedl
pass # of socket-fd to ssh-keysign, keysign verfies locally used ip-address using this socket-fd, restricts fake local hostnames to actual local hostnames; ok stevesk@
2002-05-31Add kayser; update currencies.Paul Janzen
2002-05-31undo until i find my #line bugTheo de Raadt
2002-05-30a grammar knit; from Aidan Kehoe <kehoea@parhasard.net>Michael Shalayeff
2002-05-30fix segfault when using just-one-space on an empty line; fromVincent Labrecque
dkm_holdings@hotmail.com ok art@
2002-05-30use strlcpy and snprintfTheo de Raadt
2002-05-30Avoid spinning poll, and while we're at it more closely reproduce theHugh Graham
original netcat's timeout behaviour. Theo says go.
2002-05-30use rijndael/aes from libcrypto (openssl >= 0.9.7) instead ofMarkus Friedl
our own implementation. allow use of AES hardware via libcrypto, ok deraadt@
2002-05-30snprintf in .y filesTheo de Raadt
2002-05-30-4 and -6 options; kanai@big.or.jp; itojun okTheo de Raadt
2002-05-29Don't hard-code a list of allowed baud rates. Instead, acceptTodd C. Miller
anything but check the return value of tcsetattr() and error out if it fails. This way we accept any baud rate the serial driver will support. mickey@ OK
2002-05-29 zap the ctrl-x ctrl-v keybinding for find-file-read-only. looks likeVincent Labrecque
i need more studying of emacs' keybindings :-) ok art@ (i guess that's what "vincent, zap out the keybinding" meant)
2002-05-29strlcatTheo de Raadt
2002-05-29Don't call fclose() on a NULL file handle; from markus@Todd C. Miller
Also: Use ANSI function headers Use pid_t for pids Never do exit(-1)
2002-05-29Add a few missing tests for BFREADONLY.Vincent Labrecque
ok art@
2002-05-29 add an "auto-execute" feature, that allows binding function calls toVincent Labrecque
certain patterns. for example, `auto-execute "*.c" auto-indent-mode'. ok art@
2002-05-29 add an entry for "find-file-read-only" and one for toggle-read-only,Vincent Labrecque
which was missing for an unknown reason. ok art@
2002-05-29 add a function to visit a file read-only mapped to C-x C-vVincent Labrecque
ok art@
2002-05-29 show the line number in the config file when we find an error.Vincent Labrecque
ok art@
2002-05-29don't start if privsep is enabled and SSH_PRIVSEP_USER orMarkus Friedl
_PATH_PRIVSEP_CHROOT_DIR are missing; ok deraadt@
2002-05-29KNFTheo de Raadt
2002-05-29more snprintfTheo de Raadt
2002-05-29spellingKevin Steves
2002-05-28use correct function name in fatal()Kevin Steves
2002-05-28format spec change/casts and some KNF; ok markus@Kevin Steves
2002-05-28print strerror(errno) on mmap/munmap error; ok markus@Kevin Steves
2002-05-27support ":" prefix as group name, as username can contain ".".Jun-ichiro itojun Hagino
(still support "." as welll). passwd.conf support will go away in a couple of months anyways... ok by millert
2002-05-27unsigned vs unsigned intTheo de Raadt
2002-05-27snprintfTheo de Raadt
2002-05-27a night of cleanup, so i can read this easierTheo de Raadt
2002-05-26sort ChallengeResponseAuthentication; ok markus@Kevin Steves
2002-05-26pid_t cleanupTheo de Raadt
2002-05-25missed Per Allansson (auth2-chall.c)Kevin Steves
2002-05-25split auth2.c into one file per method; ok provos@/deraadt@Markus Friedl
2002-05-25execlp->execl; from steveskMarkus Friedl
2002-05-25first version of ssh-keysign manpage, ok deraadt@Markus Friedl
2002-05-24don't include unused code in the #ifdef BSD_AUTH case; ok markus@Kevin Steves
2002-05-24stat ssh-keysign first, print error if stat fails;Markus Friedl
some debug->error; fix comment
2002-05-24minor cleanupEric Jackson
get rid of statics deraadt@ OK
2002-05-23add comment about ssh-keysignMarkus Friedl
2002-05-23add /usr/libexec/ssh-keysign: a setuid helper program for hostbased ↵Markus Friedl
authentication in protocol v2 (needs to access the hostkeys).