summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-06-23install host route for p2p interface even if there's connected net routeJun-ichiro itojun Hagino
by broadcast interface. NetBSD PR 21903. markus ok
2003-06-23minor tweaksTheo de Raadt
2003-06-23- kill exists as a built-in to most shells, not just cshJason McIntyre
- .Xr sh 1 ok millert@
2003-06-23syncTheo de Raadt
2003-06-23fix nfds type; tedu marc okTheo de Raadt
2003-06-23use strlcpy, not strncpy. ok deraadt@ millert@Ted Unangst
2003-06-23Don't remove anchor too early in table code, it makes PF use freed memory.Cedric Berger
This might just be a temporary fix, we're still looking for a better one. ok dhartmei@
2003-06-23spellingTed Unangst
2003-06-23Fix NAP/DOZE sleeping on powerpc. also on newer 745x machines use NAP notDale Rahn
DOZE, DOZE is not valid on these processors. Improves battery life on 12" PBG4 from 3 hours to 4 hours. tested by tdeval@
2003-06-23better detetection/handling of binary files.Ted Unangst
make -a do the right thing, doc and implement -U, -I. add --help and --mmap for compatibility. some other minor fixes. some from NetBSD. ok deraadt@
2003-06-23Fix comment typo in last commit.Kenneth R Westerback
2003-06-23Minor cleanups.Kenneth R Westerback
1) Don't check for the existance of /mnt/etc/hosts twice. Since we bail out at the first check the 2nd one is superfluous. 2) Shorten and clarify the upgrade network configuration logic. 3) Always ask if manual network configuration is desired when upgrading. Allows the upgrader to decline to use the existing network configuration and still have an explicit opportunity to configure the network. 4) Don't bail out if the existing network configuration fails. Instead (see 3)) offer manual network configuration and let the user decide if it is worthwhile to continue. 5) Refer to actual file that is missing when bailing out, rather than forcing user to be alert enough to prepend '/mnt'.
2003-06-22Remove files without copyright. Add a yp v1 protocol specification andMats O Jansson
generate files at compile time. -moj ok @deraadt
2003-06-22use __progname instead of progname. ok deraadtTed Unangst
2003-06-22fix usageTheo de Raadt
2003-06-223 clause UCB licenseTodd C. Miller
2003-06-22proper $OpenBSD$Theo de Raadt
2003-06-22add DPADDTheo de Raadt
2003-06-22bye bye grep (gzip remains for a few scripts)Theo de Raadt
2003-06-22enter grep dirTheo de Raadt
2003-06-22syncTheo de Raadt
2003-06-22put gnu at the end of the SRCDIRS listTheo de Raadt
2003-06-22need -lz nowTheo de Raadt
2003-06-22special/gzip is smart enough to grovel in usr.bin/compress for what itTheo de Raadt
needs. This is better than putting a compress link on each media; saves us a few bytes
2003-06-22use -DNOZ option, and rearrange for new source filesTheo de Raadt
2003-06-22-DNOZ flag to be used by install media for removing z*grep support, ifTheo de Raadt
needed. (and knf)
2003-06-22tweaks by jmc and iTheo de Raadt
2003-06-22support z{e,f}grepTheo de Raadt
2003-06-22correct fseek() parametersTheo de Raadt
2003-06-22install as z[ef]grep too. no /usr/local garbage, because we have properTheo de Raadt
getopt_long support in libc now
2003-06-22freegrep 0.16Theo de Raadt
2003-06-22use in-tree grep. it also does z*grepTheo de Raadt
2003-06-22bye bye gnu gzip. The only parts we keep using are the scripts ofTheo de Raadt
questionable license. These will be rewritten soon I hope. Our compress, linked against libz, now does everything gzip does.
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.