summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-06-19revert parts that were meant to be committed (June 12th commit)jasoni
- ok angelos@
2001-06-19clean up IP addresses in isakmpd.conf examples; ok angelos@Dan Harnett
2001-06-19Make gcc shut up about unused rcsids.Todd C. Miller
2001-06-19If we timeout during login and the user tried to login call badlogin()Todd C. Miller
before exit. SUggested by <vii@users.sourceforge.net> Add some new login.conf variables: o login-timeout - login prompt timeout o login-tries - max login tries o login-backoff - number of attempts before backing off (and sleeping)
2001-06-19do not attach at i2o-configured adapter; pointed out by ad@netbsd.orgMichael Shalayeff
2001-06-19allocate and free at the same level.Markus Friedl
2001-06-19disable x11-fwd if use_login is enabled; from lukem@wasabisystems.comMarkus Friedl
2001-06-19cleanup forced command handling, from dwd@bell-labs.comMarkus Friedl
2001-06-19Handle hardware-imposed MTU/MRU limitations.brian
Add an optional ``max'' specifier to ``set m[rt]u'', ie. ``set mtu max 1492'' for PPPoE. Bump the ppp version number. Add support for stateful MPPE (microsoft encryption) providing encryption compatibility with Windows 2000. Stateful encryption uses less CPU but is bad on lossy transports. The ``set mppe'' command has been expanded. If it's used with any arguments, ppp will insist on encryption, closing LCP if the other end refuses. Sponsored by: Monzoon Networks AG and FreeBSD Services Limited
2001-06-19update Wietse Venema's copyright to update copyright to ↵assar
ftp://ftp.porcupine.org/pub/security/logdaemon_license
2001-06-19update Wietse Venema's copyright to update copyright to ↵assar
ftp://ftp.porcupine.org/pub/security/logdaemon_license
2001-06-19A simple mmap regression testNiklas Hallqvist
2001-06-19no way, you are on drugs. last commit revoked because it broke setuid majorlyTheo de Raadt
2001-06-19Add a -a flag to support other authentication types.Todd C. Miller
Probably only useful in conjunction with a remote S/Key server.
2001-06-19mop up after angelosTheo de Raadt
2001-06-18Clarify that if strlcat() does not find a NUL within siz byte itTodd C. Miller
will not NUL terminate either.
2001-06-18clnt leaks; tommy@ti.comTheo de Raadt
2001-06-18Add sanity check for remote host boot time > current time for whenTodd C. Miller
clocks go screwey. Similar to patch from kstailey@disclosure.com.
2001-06-18When creating temp files, use fchmod() to set the perms to be what weTodd C. Miller
expect since the mode mkstemp() uses can be modified by the umask. This fixes a problem where vi would spin trying to create temp files, eating up inodes; reported by xyntrix@bitz.org This fix has the side effect of letting you create files with silly modes (like 0000), but that is probably OK.
2001-06-18Close PR 1864, Mhz should be written as MHz.Dale Rahn
2001-06-18syncTheo de Raadt
2001-06-18Change default transfer type from ascii to binary; closes PR 1626Todd C. Miller
Similar to patch from mpech@prosoft.org.lv
2001-06-18o move passwd.conf variables into login.confTodd C. Miller
o no longer install passwd.conf (but it is used if it exists and the needed info is not in login.conf) o added passwordtime and minpasswordlen login.conf variables
2001-06-18more more microcode (so it does not end up installed in includes, for one)Theo de Raadt
2001-06-18move microcodeTheo de Raadt
2001-06-18use cgetusedb(3)Todd C. Miller
2001-06-18kill useless include of db.hTodd C. Miller
2001-06-18Add new cgetusedb() function to toggle reading of .db files in getcap(3).Todd C. Miller
Needed for cap_mkdb to really DRT when given several input files or an output file with a different name from the input file. cvs: ----------------------------------------------------------------------
2001-06-18compile libc with -Werror since any warnings gcc produces without extra ↵Todd C. Miller
-Wfoo directives is something we care about
2001-06-18Fix a char vs. u_char problem I introduced in the last commit.Todd C. Miller
2001-06-18PalmOS fixesJim Rees
2001-06-18As discussed ages ago we prefer ANSI for new code.Todd C. Miller
2001-06-18Check is sugid is allowed where we set the P_SUGID* flags.Artur Grabowski
Remove the ugly hack added in last revision.
2001-06-18Add proc_cansugid used to check if a process should be allowedArtur Grabowski
to raise its privileges in exec.
2001-06-18keep track of the txform/thash, and make sure that non-blocksizeTheo de Raadt
requests do not get passed to device drivers, because some like the ubsec(4) will do really nasty things like DMA to completely random locations in memory when you do so
2001-06-18kill a debug message that makes UBSEC_DEBUG uselessTheo de Raadt
2001-06-18trace_req is not used anymore (was a nop).Artur Grabowski
2001-06-18trace_req is a nop.Artur Grabowski
rename stop -> proc_stop (stop is not a good function name).
2001-06-18oops, backwards checkTheo de Raadt
2001-06-18bye byeTheo de Raadt
2001-06-18bye bye ipfTheo de Raadt
2001-06-18split PT_DETACH handling, so that pc cannot be set by it; art okTheo de Raadt
2001-06-18incorrect panic messageTheo de Raadt
2001-06-18copyright notices; noted missing by nateTheo de Raadt
2001-06-17be careful to avoid null pointer derefTodd C. Miller
2001-06-17Use BSD authentication to retrieve the challenge so we no longer requireTodd C. Miller
suid root.
2001-06-17Do not remove a CVSed file during the build process.Dale Rahn
At one point it was a generated file, but that changed long ago. Pointed out by krw.
2001-06-17spelling: Asymetric -> AsymmetricPeter Valchev
2001-06-17Add -Wno-uninitialized.Hugh Graham
2001-06-17Don't pciaddr_do_resource_allocate if device is AGP to avoid conflict.Michael Shalayeff
from Masanori Kanaoka <kanaoka@netbsd.org>