summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-07-08Cleanup of getopt argument: -p is not supported anymore.Tobias Stoeckmann
ok deraadt@, dlg@
2014-07-08don't really bother cleaning up the callback, it will go away soon enoughMarc Espie
2014-07-08in case we say("Some parameter #1 blabla there") but weMarc Espie
forget the parameter, display a decent error message instead of the usual warning...
2014-07-08Prettify the list of "required by" package names by sorting it.Vadim Zhukov
okay espie@
2014-07-08replace malloc(strlen())/strlcpy with strdupbcook
ok beck@ jsing@
2014-07-08Define SMALL_REGISTER_BANK on arm and vax, for it generates faster code forMiod Vallat
these systems (vax being 30% faster!). (surprisingly, the prime candidate for SMALL_REGISTER_BANK, SuperH, runs actually slower in that case)
2014-07-08Remove undocumented _des_crypt() interface and its companion header file,Miod Vallat
which had never been installed, so it's unlikely something ever used this in the last 15~20 years. ok deraadt@ jsing@ beck@
2014-07-08pedantic avoidance of division by zero, likely not actuallyBob Beck
possible to hit for real. ok miod@ jsing@
2014-07-08Typo in previous assym.h dependency changesMiod Vallat
2014-07-08Include -DLIBRESSL_INTERNAL in regress makefiles.Joel Sing
ok miod@
2014-07-08various queue improvements:Eric Faurot
- add a "close" hook to the backend API. - improve the sync() pattern in queue_fs: only sync at commit time and not for every envelope creation - various fixes to the experimental external queue API.
2014-07-08remove dead code. these imsgs are handled in pony.c.Eric Faurot
2014-07-08add missing stdint. include for uint32_t, etc.bcook
ok beck@ jsing@
2014-07-08make the filter API move forward (still not plugged).Eric Faurot
2014-07-08white space repairsTheo de Raadt
2014-07-08zap trailing tabEric Faurot
2014-07-08string.h is the correct file, not strings.hbcook
ok beck@ jsing@
2014-07-08Update the table API: lookup functions can take an optional parametersEric Faurot
dictionnary (currently not set). While there, add a helper for forking external backends, and remove unused table functions. ok gilles@
2014-07-08This is bootblock code. Don't pull in uvm header files to deal withTheo de Raadt
page rounding! Disgusting. Instead, define local copies of those macros.
2014-07-08rearrange some includes. also, pull in uvm/uvm.h because soon sysctl.hTheo de Raadt
won't be pulling in the uvm side of the kitchen.
2014-07-08the #ifdef _KERNEL can wrap the entire file. uvm_extern.h only pullsTheo de Raadt
this inside #ifdef _KERNEL in any case, so nothing really changes.
2014-07-08subtle rearrangement of includesTheo de Raadt
2014-07-08A few missing sys/systm.h includes. Soon the universes dragged in viaTheo de Raadt
uvm_extern.h, uvm_param.h, and sysctl.h will no longer gaurantee that _KERNEL code gets it.
2014-07-08These do not need the extremely poorly named uvm/uvm_extern.h (whichTheo de Raadt
pulls in the universe). occasionally they need sys/systm.h
2014-07-08make sure to clear the WAIT flag when cancelling the connector timeout.Eric Faurot
2014-07-08syncTheo de Raadt
2014-07-08Add Maastricht Aachen Airport (MST).Mark Kettenis
Requested by mikeb@
2014-07-08bye bye UBC; ok beck dlgTheo de Raadt
2014-07-08We do not care about broken Borland C pre-processors.Joel Sing
ok beck@ deraadt@
2014-07-08Pretty much everything has SO_REUSEADDR - nuke the #ifdefs.Joel Sing
ok beck@
2014-07-08We have EAI_FAMILY - remove the #ifdefs.Joel Sing
ok beck@
2014-07-08fatalx(errorstr) -> fatalx("%s", errorstr)Eric Faurot
add missing include and remove redundant debug trace while here.
2014-07-08Change fatal/fatalx to use a format string. Expand in a static bufferEric Faurot
to cope with low-memory situations. ok gilles@ chl@
2014-07-08getentropy for osx and solaris. will be needed for a portable releaseBob Beck
2014-07-08Stop using uvm_extern.h to fetch uvm_param.h; so define local versionsTheo de Raadt
of trunc_page and such. Horrid namespace violations, prepare for your coming doom... ok kettenis
2014-07-08no need to send a stat update message when {inc,dec}rementing by 0.Eric Faurot
2014-07-08There really isn't a strict "heap" anymore, so just call everything likeTheo de Raadt
that an anon. Useful change since BRKSIZ will soon leave the namespace. ok kettenis
2014-07-08More KNF.Joel Sing
2014-07-08Avoid locking in BIO_get_port() by using getservbyname_r() instead ofJoel Sing
getservbyname(). While here, provide a common/single return path. ok deraadt@
2014-07-08fix oops, accidental delete.. darn copying of files between machinesBob Beck
2014-07-08j should be an int, like repeatBob Beck
2014-07-08KNF.Joel Sing
2014-07-08KNF.Joel Sing
2014-07-08unbreak last commit - but same intent, make re-seed less expensiveBob Beck
2014-07-08More KNF.Joel Sing
2014-07-08Simplify various BIO_sock_* fuctions - less code, better variable names,Joel Sing
correct types and fewer casts. ok deraadt@ miod@
2014-07-08undo accidentally committed changesStefan Sperling
2014-07-08Remove left-over call to removed function m_clsetwms().Stefan Sperling
ok mpi
2014-07-08repeat calls to getentrypy() with the same pid likely indicate reseeds.Theo de Raadt
Since we assume the PRNG above is doing "something old, something new" folding, shortcut and do fewer repeats through the timing loop. ok beck
2014-07-08fix typos.Igor Sobrado
ok jmc@