Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |||
2002-05-16 | Change S/Key stuff from using a flat file (/etc/skeykeys) to a directory | Todd C. Miller | |
where each user gets their own file, which is owned by that user. An old S/Key database may be converted by running "skeyinit -C" as root. Programs that need to access the S/Key database no longer need to be setuid root. They must now be setgid auth instead. | |||
2002-05-15 | re-enable privsep and disable setuid for post-3.2.2 | Markus Friedl | |
2002-05-15 | enter OpenSSH_3.2.2 | Markus Friedl | |
2002-05-15 | disable privsep and enable setuid for the 3.2.2 release | Markus Friedl | |
2002-05-15 | 'monitor' variable clashes with at least one lame platform (NeXT). Renamed | mouring | |
to 'pmonitor'. provos@ | |||
2002-05-14 | know powerpc core files | Theo de Raadt | |
2002-05-14 | Major changes: | Todd C. Miller | |
Job names are now "runtime.queue" where runtime is when the job will run in Unix time format. This is what SysV at does and allows us to nuke the .SEQ file. Historic BSD options for atq and atrm are now implemented; atq and atrm get their own man pages. At no longer does anything with the -v flag. We print the execution time when jobs are submitted so there is no need. Most *scanf() usage is gone (one remains in atrun). Better sanity checks in atrun. Random style/cleanup. With these changes we have the best of both worlds; POSIX compliance with the traditional BSD features. | |||
2002-05-14 | some -Wall cleanup; closes pr/2649. | Federico G. Schwindt | |
minor changes by me. | |||
2002-05-13 | handle debug messages during rhosts-rsa and hostbased authentication; ok provos@ | Markus Friedl | |
2002-05-13 | move the packet_send_debug handling from auth-options.c to auth.c; ok provos@ | Markus Friedl | |
2002-05-13 | Execute job with user's shell, not /bin/sh as per POSIX and historic | Todd C. Miller | |
BSD behavior. Add some bash-specific and ssh agent variables to the no_export list. Print the message after job submission the way POSIX wants. When cat'ing or removing non-existent jobs, exit with an error if the specified job does not exist. | |||
2002-05-13 | Only print usage for the command that was run (at, atq, atrm, batch), not | Todd C. Miller | |
all four. Also differentiate between the touch(1) style time as time_arg and the at(1) style time as timespec (which is what SUS3 does). Instead of referring to the touch time format as POSIX time, reference touch. This is what SUS3 does and it is what users will know. | |||
2002-05-13 | Call setsid() in the child after sshd accepts the connection and forks. | Todd C. Miller | |
This is needed for privsep which calls setlogin() when it changes uids. Without this, there is a race where the login name of an existing connection, as returned by getlogin(), may be changed to the privsep user (sshd). markus@ OK | |||
2002-05-13 | less warnings. skey_{respond,query} are public (in auth.h) | Jun-ichiro itojun Hagino | |
2002-05-12 | Fix sshd Banner option for privsep; ok markus@ provos@ | Damien Miller | |
2002-05-11 | Pass -Wall and use ANSI function headers. | Todd C. Miller | |
2002-05-11 | Add POSIX -r and -t flags from FreeBSD. The old -d option is now | Todd C. Miller | |
deprecated and no longer documented. Also, use __progname instead of examining argv and clean up a few minor warnings. | |||
2002-05-11 | sort command line options lexigraphically and remove lies about looking | Todd C. Miller | |
in utmp (our getlogin() doesn't look at utmp). | |||
2002-05-11 | Kill -V (version) option since it has no relation to reality any more. | Todd C. Miller | |
2002-05-11 | Use O_EXCL (not O_TRUNC) when creating new job file. If there is a | Todd C. Miller | |
pre-existing file with the same name this is indicative of a problem with the sequence file and so it makes sense to treat it as an error. | |||
2002-05-11 | typo in comment | Kevin Steves | |
2002-05-11 | at(1) is no longer setuid root, it is setgid crontab. | Todd C. Miller | |
This means that /var/at/at.{allow,deny} must be readable by group crontab, /var/at/jobs is mode 01770, and /var/at/.SEQ is mode 0660. | |||
2002-05-11 | Add missing libraries to bsd.prog.mk (mostly kerberosV) | Marc Espie | |
Use them in DPADD throughout the tree. Fix a few mispells (LIBMATH -> LIBM...) Wipe obsolete lib (LIBRESOLV) Sort added missing libraries, move obsolete stuff apart. Synch documentation in bsd.README ok deraadt@ | |||
2002-05-10 | doc error; soeren@thing.dk | Theo de Raadt | |
2002-05-10 | In getlin(): match and handle EOF before checking isprint() | Jason Wright | |
millert ok. | |||
2002-05-10 | Fixups for -Wall from panda@omatis.com in system/2634. | Hugh Graham | |
Checked by deraadt. | |||
2002-05-10 | Reverted from last patch. Breaks AFS/KRBx. | mouring | |
2002-05-10 | Convert to mdoc, though there are still a few troff font directives left. | Todd C. Miller | |
Examples could use updating. | |||
2002-05-10 | Enable usbhidaction | Nathan Binkert | |