Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-05-29 | Add a few missing tests for BFREADONLY. | Vincent Labrecque | |
ok art@ | |||
2002-05-29 | add an "auto-execute" feature, that allows binding function calls to | Vincent 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-v | Vincent 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-29 | don't start if privsep is enabled and SSH_PRIVSEP_USER or | Markus Friedl | |
_PATH_PRIVSEP_CHROOT_DIR are missing; ok deraadt@ | |||
2002-05-29 | KNF | Theo de Raadt | |
2002-05-29 | more snprintf | Theo de Raadt | |
2002-05-29 | spelling | Kevin Steves | |
2002-05-28 | use correct function name in fatal() | Kevin Steves | |
2002-05-28 | format spec change/casts and some KNF; ok markus@ | Kevin Steves | |
2002-05-28 | print strerror(errno) on mmap/munmap error; ok markus@ | Kevin Steves | |
2002-05-27 | support ":" 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-27 | unsigned vs unsigned int | Theo de Raadt | |
2002-05-27 | snprintf | Theo de Raadt | |
2002-05-27 | a night of cleanup, so i can read this easier | Theo de Raadt | |
2002-05-26 | sort ChallengeResponseAuthentication; ok markus@ | Kevin Steves | |
2002-05-26 | pid_t cleanup | Theo de Raadt | |
2002-05-25 | missed Per Allansson (auth2-chall.c) | Kevin Steves | |
2002-05-25 | split auth2.c into one file per method; ok provos@/deraadt@ | Markus Friedl | |
2002-05-25 | execlp->execl; from stevesk | Markus Friedl | |
2002-05-25 | first version of ssh-keysign manpage, ok deraadt@ | Markus Friedl | |
2002-05-24 | don't include unused code in the #ifdef BSD_AUTH case; ok markus@ | Kevin Steves | |
2002-05-24 | stat ssh-keysign first, print error if stat fails; | Markus Friedl | |
some debug->error; fix comment | |||
2002-05-24 | minor cleanup | Eric Jackson | |
get rid of statics deraadt@ OK | |||
2002-05-23 | add comment about ssh-keysign | Markus Friedl | |
2002-05-23 | add /usr/libexec/ssh-keysign: a setuid helper program for hostbased ↵ | Markus Friedl | |
authentication in protocol v2 (needs to access the hostkeys). | |||
2002-05-23 | if NOKVM is defined, do not do the KVM stuff at all | Theo de Raadt | |
2002-05-22 | spelling; abishoff@arc.nasa.gov | Theo de Raadt | |
2002-05-20 | fix Xr | Theo de Raadt | |
2002-05-19 | misc cleanups, and grok systrace better | Theo de Raadt | |
2002-05-19 | extra commas in enum not 100% portable | Theo de Raadt | |
2002-05-19 | document default cdio connection | Marc Espie | |
2002-05-19 | o Fix some fallout from argv handling changes. | Todd C. Miller | |
o Use ANSI function headers o When creating a new user record cope with the fact that there may be an existing zero-length userrecord. o Replace -z with -r in usage() | |||
2002-05-18 | grok crypto/kqueue/systrace vnodes | Theo de Raadt | |
2002-05-17 | quota(1) does not need to be setuid root; tested by mickey@ | Todd C. Miller | |
2002-05-17 | Replace -z option (zero) with -r option (remove). | Todd C. Miller | |
2002-05-17 | The standard way to get info on symlinks is -L, not -h; Peter Werner | Todd C. Miller | |
2002-05-17 | version.h | Markus Friedl | |
2002-05-17 | Fix typo/thinko. Pass in as to auth_approval(), not NULL. | Todd C. Miller | |
Closes PR 2659. | |||
2002-05-17 | oops, worked only because va_end is a noop on most of our arches. | Marc Espie | |
2002-05-17 | Call enable_db() from convert_db() so the dir creation as well as | Todd C. Miller | |
mode/user/group setting is done in one place. | |||
2002-05-16 | don't limit xauth pathlen on client side and longer print length on | Kevin Steves | |
server when debug; ok markus@ patch from pin@math.chalmers.se | |||
2002-05-16 | fix warnings (openssl 0.9.7 requires const) | Markus Friedl | |
2002-05-16 | Update for new S/Key file format | Todd C. Miller | |
2002-05-16 | Add missing chown(2) call. | Todd C. Miller | |
2002-05-16 | Xr skeyinfo(1) | Todd C. Miller | |
2002-05-16 | Revert to using the S/Key database directly (instead of BSD auth) | Todd C. Miller | |
so we can get real error messages. This means the -a option is history but it wasn't very useful anyway. | |||
2002-05-16 | display the ECN related statistics. | Kenjiro Cho | |
it is a bit verbose and will be cleaned up once we figure out which counters are more useful than others. | |||
2002-05-16 | - mimic pw_error() behavior from libutil when name is NULL. | Federico G. Schwindt | |
- while i'm here some style, as well as spaces/tabs removal. deraadt@ ok |