summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-06-22man page changes from jmc: use this as gzip tooTheo de Raadt
2003-06-22Dynamic linking random order fixes. This enables random library ordering.Dale Rahn
Tested by naddy@ and others.
2003-06-22syncTheo de Raadt
2003-06-22extra headersTheo de Raadt
2003-06-22knf and ansiTheo de Raadt
2003-06-22in FILES add a hint to db/user.listNikolay Sturm
espie@ ok
2003-06-22-mdoc version;Jason McIntyre
ok pjanzen@
2003-06-22-mdoc version;Jason McIntyre
ok pjanzen@
2003-06-22whatever happened, i cannot explain it. rollback my stupidFederico G. Schwindt
good-for-nothing commit. my apologies.
2003-06-22fix prototype; from Pedro Bastos.Federico G. Schwindt
2003-06-223 missing header filesTheo de Raadt
2003-06-22Sync NIOT load address with the bootloader address change of last year,Miod Vallat
my bad. Spotted by pvalchev@.
2003-06-21correct sign of flags; millert okTheo de Raadt
2003-06-21add CAVEATS: disklabel only supports 15 partitions, excluding `c';Jason McIntyre
from a thread on misc@; wording, help, and ok nick@
2003-06-21Make file selection more resistant to unexpected user input.Kenneth R Westerback
Rather than evaluating the expression case _f in $resp) ... esac use the equivalent form case _f in @($resp)) ... esac so that user input with multiple file names, user input with some special characters like ';', etc. do not cause syntax errors and premature ejection from the selection loop. A determined user can still cause problems, e.g. by using quotes. Clean up and simplify the code while in the area. Problems noted by todd@.
2003-06-21s/for spall files/for small files/Daniel Hartmeier
2003-06-21kill duplicate .Xr;Jason McIntyre
from Kent Spillner.
2003-06-21#ifdef INET6Daniel Hartmeier
2003-06-21fflush(stdout) in pfctl -vvsq endless output.Daniel Hartmeier
2003-06-21document mount_ntfs and better formatting;Jason McIntyre
ok tedu@
2003-06-21Add explicit declaration of printerr variable in function headerTodd C. Miller
(was defaulting to int which is OK but oh so K&R :-). From Theo.
2003-06-21typo;Jason McIntyre
2003-06-21clarify these functions by changing references from strings to buffersAnil Madhavapeddy
ok deraadt@, millert@, jmc@, suggested by espie@
2003-06-21missing $SUDO; from dtucker@zip.com.auMarkus Friedl
2003-06-21count packets and bidirectionally on state entries, allowing for fine-grainedDamien Miller
traffic reporting w/ pfsync; ok dhartmei@ Note: ABI change (new fields in struct pf_state), requires a rebuild of pfctl and tcpdump.
2003-06-21()Theo de Raadt
2003-06-21the theTheo de Raadt
2003-06-21A few clarifications, and more third-person text.Miod Vallat
2003-06-21make type descriptions generally plural.Ted Unangst
Vfs -> VFS, Adosfs -> ADOSFS, etc.
2003-06-21document new malloc type EMULDATA and missing NTFS types.Ted Unangst
2003-06-21add exec/fork/exit hooks per process for compat emulations.Ted Unangst
use them to correctly emulate linux brk. update to TNF copyright in linux_exec.c. from netbsd, mostly from a diff by Kurt Miller in pr3318. this should fix java. no regressions in testing by kurt and sturm@. be prepared for "proc size mismatch" -- recompile ps and friends. ok deraadt@
2003-06-21minor grammarPeter Valchev
2003-06-21typoPeter Valchev
2003-06-20correct what FIONBIO returns;Jason McIntyre
closes PR 2696; work done by Otto Moerbeek. also sorted the .Rs/.Re section.
2003-06-20syncTheo de Raadt
2003-06-20Screen blanker routine for Creator, adapted from the X11 sunffb driver code.Miod Vallat
Tested by jason@ and I.
2003-06-20Add MSS support to the synproxy. The client's MSS is sent to the server,Daniel Hartmeier
the server's MSS is guessed based on the routing table and interface MTU. Fine patch entirely from Krists Krilovs <pow@pow.za.net>, ok frantzen@ Note: ABI change (new field in struct pf_state), requires a pfctl rebuild (and tcpdump for pfsync).
2003-06-20tweak;Jason McIntyre
ok jason@
2003-06-20Call setusershell() before using getusershell() to guarantee weTodd C. Miller
start checking on the first line of /etc/shells. Also call endusershell() when we are done. From FreeBSD.
2003-06-20Extend 'BAD ICMP' debug message, include icmp type/code and outer IP headerDaniel Hartmeier
addresses. ok mcbride@, cedric@
2003-06-20some cleanings recommended by lint; dhartmei okTheo de Raadt
2003-06-20a cleaning recommended by lintTheo de Raadt
2003-06-20some cleanings recommended by lintTheo de Raadt
2003-06-20syncTheo de Raadt
2003-06-20Be a bit more verbose when we give up on ever seeing a response to theHakan Olsson
last message we sent out. In case we initiated the exchange, one possible and common reason is a network level problem (pf, routing, whatnot), if we're the responder, there is also the possibility we were scanned by something like ike-scan. markus@ ok.
2003-06-20To keep the frame pointer addressing for stack_protection,Hiroaki Etoh
skip the canonicalization; (minus A (plus B C)) to (minus (minus A B) C) where B is frame pointer and C is frame offset. ok pvalchev@
2003-06-20To keep the frame pointer addressing for stack_protection, skip the ↵Hiroaki Etoh
following RTL conversion; (plus (plus fp offset) const) to (plus (plus fp const) offset). ok pvalchev@
2003-06-20remove unused autoconf filesMarkus Friedl
2003-06-20remove old files; libevent is maintained elsewhereMarkus Friedl
2003-06-20use .Bk/.Ek to keep SYNOPSIS tidy;Jason McIntyre