summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-11-23Replace socket_set_blockmode() and fcntl(fd, F_SETFL, O_NONBLOCK) callsReyk Floeter
with the SOCK_NONBLOCK flag to socket() and accept4(). OK claudio@ jung@
2015-11-23downfalls -> pitfallsmmcc
2015-11-23Use pledge "disklabel" as needed. The theory here is these tools become moreTheo de Raadt
resistant against memory correctup, if a corrupt filesystem is given to them. ok krw
2015-11-23"random generation numbers" -> "randomly generated numbers"mmcc
2015-11-23downfalls -> pitfallsmmcc
2015-11-23Remove the debugging infrastructure, which was ~1/3 of the code. Makesmmcc
pledging easier, and it was excessive complicated stuff. "Good." deraadt@
2015-11-23define port_log even without -DDEBUGAlexandre Ratchov
2015-11-23Remove support for "lookup yp" in /etc/resolv.conf. This historicalTheo de Raadt
wart is incompatible with pledge, because suddenly a "dns" operation needs "getpw" access to ypbind/ypserv, etc. file + dns access is enough for everyone, sorry if you were using that old SunOS 4.x style mechanism, but it is now gone. ok semarie millert florian
2015-11-23add missing NAME entries;Jason McIntyre
feedback/ok schwarze
2015-11-23Revert previous it introduces a regression found by krw@Martin Pieuchot
2015-11-23Sync proc.c with ikedReyk Floeter
2015-11-23Sync proc.c with iked.Reyk Floeter
2015-11-23Sync proc.c with iked: the default proc_dispatch_null allows to removeReyk Floeter
some empty imsg callback stubs in the privsep processes. iked's proc.c -r1.24 was OK benno@ deraadt@
2015-11-23ncheck_ffs may be invoked more simply as ncheck,Jason McIntyre
so add an entry to NAME and document it; ok schwarze
2015-11-23Use if_get() rather than rt_ifp.Martin Pieuchot
ok sashan@
2015-11-23There's no longer a need to include <net/hfsc.h> in <net/if_var.h>Martin Pieuchot
2015-11-23Remove more useless comments. This whole file may go eventually, as permmcc
deraadt@'s decree.
2015-11-23if_start needs splnet. help/ok dlg@Stuart Henderson
2015-11-23Clarify the size argument, you can specify it as bytes or kilobytes,Reyk Floeter
but it is rounded to megabytes. Pointed out by deraadt@
2015-11-23strings.h -> string.hGilles Chehade
ok sunil@
2015-11-23cleanupGilles Chehade
2015-11-23Add support for logging to stderr or syslog, and to run vmd inReyk Floeter
foreground with -d. OK mlarkin@ jung@
2015-11-23Update less(1) and lesskey(1) manuals for LESSCHARSET removaltb
From Michael Reed < m ! reed () mykolab ! com >, thanks! ok nicm@
2015-11-23Remove unused -M option (2+ years get used to it is enough)Alexandre Ratchov
2015-11-23If the clock is ticking because of a MMC start message, then stopAlexandre Ratchov
it on exit. This avoids holding an extra ref to the device, in turn preventing sndiod from exitting cleanly.
2015-11-23Remove bug-less email address. From Michael Reed, thanks!tb
While there, remove CAVEAT describing DOS and OS/2 quirks. ok nicm@
2015-11-23Save and restore umask when creating /tmp/aucat/ to ensure theAlexandre Ratchov
directory gets the right permissions, as we do in other places.
2015-11-23tweaks;Jason McIntyre
2015-11-23Do not include <sys/atomic.h> inside <sys/refcnt.h>.Martin Pieuchot
Prevent lazy developers, like David and I, to use atomic operations without including <sys/atomic.h>. ok dlg@
2015-11-23Include <sys/atomic.h> when atomic operations are used.Martin Pieuchot
This has been masked because <sys/srp.h> is pulled unconditionally. ok dlg@
2015-11-23Move ifq_deq_{begin,commit,rollback} appart to keep man pages short,Martin Pieuchot
readable and to emphasis that they are not the prefered API for your drivers. ok dlg@
2015-11-23zs(4) is now called zs, from jmc@Martin Pieuchot
2015-11-23Initialize SIOCDIFADDR{_IN6,} argument as intended.Martin Pieuchot
How this could have been unotified for so long? Thanks to sebastia@ for reporting a breakage when re-configuring an IPv6 static address. ok sebastia@
2015-11-23Attaches zs(4) as "zs" not "zsc".Martin Pieuchot
Incoherency brought by jmc@ and schwarze@ because the SYNOPSIS of the corresponding manual do not match its NAME. This is one step further in the zs(4) unification... Go dokey go! Tested by jmatthew@, ok sebastia@, deraadt@
2015-11-23use device numbers stored in the dev structure rather thanAlexandre Ratchov
assuming dev_list is ordered
2015-11-23point to mount_mfs(8), not mfs(8);Jason McIntyre
2015-11-23- fix printing of non-ascii chars in error messageOtto Moerbeek
- solve a couple of problems found by Michael McConville using afl: printing of null nodes, and generating cyclic "trees". These can only happen on invalid input, afaik. ok benno@
2015-11-23Insert new ports at the head of the list and stop assuming itsAlexandre Ratchov
ordered.
2015-11-23Don't shadow a function argument.Nicholas Marriott
2015-11-23Most of these functions can be static.Nicholas Marriott
2015-11-23Missing prototype.Nicholas Marriott
2015-11-23A couple more prototypes without arguments.Nicholas Marriott
2015-11-23Just use the default CDIAGFLAGS rather than defining our own.Nicholas Marriott
2015-11-23Fix function type arguments.Nicholas Marriott
2015-11-23$OpenBSD$Nicholas Marriott
2015-11-23Remove cscope references in documentation.Anthony J. Bentley
requested by and ok jmc@
2015-11-23need sys/device.hTheo de Raadt
2015-11-23Restructure bounce content as a multi-part MIME message.Sunil Nimmagadda
Content-Type header diff from Philipp Takacs <philipp<at>bureaucracy.de> Ok gilles@ jung@
2015-11-23less builds its programs one level lower, so we need a Makefile.inc hereTed Unangst
to get -Werror-implicit-function-declaration as in ../Makefile.inc
2015-11-23calling ioctl() requires include sys/ioctl.hTed Unangst