summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-09-06remove compat_aout support for i386. ok deraadtTed Unangst
miod has requested a stay of execution for compat_aout in general.
2012-09-06config parsing is done in one pass now. no need to use callback anymore.Eric Faurot
2012-09-06some better phrasing, mostly via jsingTed Unangst
2012-09-06move pkcs5_pbkdf5 function to libutil so everybody can play with itTed Unangst
ok deraadt jsing matthew
2012-09-06Remove the need to occasionally treat dos file names as strings byKenneth R Westerback
using "%.11s" to print them out. Make all dos file names 11 byte arrays and nuke the attempt to put '\0' at the 12th position of such an array. Fixes 'panic: smashed stack in msdosfs_rename.c' reported by MERHIGI Marcus via tech@. Tested by MERHIGI Marcus. Suggestions and ok tedu@.
2012-09-06Avoid modifying argv when building argv for $* and $@ since it willTodd C. Miller
affect ps output. This can happen when command line options are specified, e.g. "sh -c command". Based on a diff from espie@ OK espie@
2012-09-06include yp headers if necessary.Eric Faurot
remove unused variable.
2012-09-06make it easy to build without debug codeEric Faurot
2012-09-06missing letter in previous;Jason McIntyre
2012-09-06tweak previous;Jason McIntyre
2012-09-06add a strsplit() helper to factorize code a bit.Eric Faurot
2012-09-06Make the escape command help (~?) context sensitive so that only commandsDarren Tucker
that will work in the current session are shown. ok markus@
2012-09-06shorter display for trivial updatesets,Marc Espie
foo-0.0->foo-1.0 becomes foo-0.0->1.0
2012-09-06YP is now supported.Eric Faurot
2012-09-06remove unused member, reorganize a bit and sync manpage.Eric Faurot
2012-09-06mention SMBus support in glxpcib(4)Jonathan Gray
2012-09-06Put help text for ~v and ~V around the correct wayDarren Tucker
2012-09-06Add ~v and ~V escape sequences to raise and lower the logging levelDarren Tucker
respectively. Man page help from jmc, ok deraadt jmc
2012-09-06Restore missing space.Darren Tucker
2012-09-06add default license to mdoc.template. ok deraadt ianTed Unangst
while here, change CCYY to YYYY
2012-09-05backout, Todd's version may be cleaner, but it's also wrong.Marc Espie
2012-09-05sh -c should not munge argv[].Marc Espie
This fixes ps -ww output. joint work by millert@ and me@. okay otto@, deraadt@ "feel free to commit my version" millert@
2012-09-05zap dead fileEric Faurot
2012-09-05Get rid of the hostaddr_async subquery and merge its behaviourEric Faurot
directly into getaddrinfo_async_run. Simplifies everything by a great deal.
2012-09-05run regress with the local env tooEric Faurot
2012-09-05use LDSTATIC for building static executablesEric Faurot
2012-09-05overwrite with random stream; a repeating chunk of random data isn'tChristian Weisgerber
random at all ok tedu@
2012-09-05COMPAT_O48 can be turned off; ok guentherTheo de Raadt
2012-09-05struct oscsi_addr is not used anymoreTheo de Raadt
2012-09-05struct orlimit is only used by linux compat now, and can stop pollutingTheo de Raadt
the system .h files
2012-09-05struct omount can die; ok guentherTheo de Raadt
2012-09-05Implement basic (blocking) YP support for getaddrinfo_async().Eric Faurot
YP is now supported on all relevant resolver functions.
2012-09-05Make hostaddr_async() return a linked list of struct addrinfo. FirstEric Faurot
round of a getaddrinfo_async() simplification. The goal is to make YP support easier to add, and eventually remove the whole hostaddr_async subquery.
2012-09-05Handle empty list properly in choose-list, based on fix from Thomas Adam.Nicholas Marriott
2012-09-05We can't tell what the terminal has done with a DCS string, so reset theNicholas Marriott
cursor and attributes afterwards.
2012-09-05don't let pkg_add turn interactive, and waive the @ask-update questions.Marc Espie
okay sthen@ halex "you know best"... problem(s) reported by claudio@
2012-09-05use "MS-DOS", for consistency with other docs;Jason McIntyre
2012-09-05don't truncate a pointer to int, before checking the low bits -- use uintptr_tTheo de Raadt
from UMEZAWA Takeshi
2012-09-04one random overwrite is sufficient, after some discussion on techTed Unangst
2012-09-04arc4random_buf is the easy way to fill a buffer now. ok deraadtTed Unangst
2012-09-04Implement pci_min_powerstate().Mark Kettenis
2012-09-04Implement pci_min_powerstate().Mark Kettenis
2012-09-04Implement pci_min_powerstate().Mark Kettenis
2012-09-04Add support for -fPICTheo de Raadt
ok kettenis
2012-09-04The powerlevel is an unsigned int, there is no need to check for negativeClaudio Jeker
values and even if this would make more sense. Found by brad some time ago.
2012-09-04implement basic YP support for gethostbyname_async()/gethostbyaddr_async()Eric Faurot
by using the blocking YP API internally.
2012-09-04fix log_err() calls (from Patrick Wildt) and remove extra space.Okan Demirmen
ok haesbaert@
2012-09-04Trivial code simplification from Tim Ruehsen.Nicholas Marriott
2012-09-04Raise IPL to IPL_SOFTNET in nd6_addr_add(). This code originally ran atStefan Sperling
IPL_SOFTNET before it was factored out into a work queue task. ok dlg
2012-09-04sort sections;Jason McIntyre