summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-10-31Update httpd(8) to use libtls instead of libressl.Joel Sing
2014-10-31Update ftp(1) to use libtls instead of libressl.Joel Sing
2014-10-31Rename libressl to libtls to avoid confusion and to make it easier toJoel Sing
distinguish between LibreSSL (the project) and libressl (the library). Discussed with many.
2014-10-31redirect error output to stderr instead of stdoutGleydson Soares
stderr is always unbuffered by default, so zap fflush(3) its no longer makes any sense here reminded by espie@ OK espie@
2014-10-31Use CDIAGFLAGS from bsd.own.mk and append additional warning flags.Alexander Bluhm
All warnings have been fixed in libevent. OK nicm@
2014-10-31Use understandable messages when the per-xfer poison value is incorrect.Martin Pieuchot
Prodded by a comment from stsp@.
2014-10-31The config logic with "rl needs-flag" gotJonathan Gray
removed back in 2011. Remove code under #if NRL > 0. ok miod@
2014-10-31remove a duplicate pckbdvar.h include under NGSCKBD > 0Jonathan Gray
gsckbd was removed back in 2008 so this was never defined.
2014-10-31remove unused and uneeded includes under NCY_ISA > 0 and NCY_PCI > 0Jonathan Gray
where cy.h is not included. discovered with a script from guenther@
2014-10-31Make default output matches status. Hackish but we are not allowed toAntoine Jacoutot
use svc_default_enabled_flags like any other function...
2014-10-31Useless use of sed(1).Antoine Jacoutot
ok swartze@
2014-10-31#if NSWDISPLAY > 0 -> #if NWSDISPLAY > 0Jonathan Gray
now wsdisplay_suspend() will run on suspend
2014-10-31Fix a missing include in amd64 pmap.c that resulted in an erroneous memoryMike Larkin
map entry being entered in uniprocessor (UP) kernels. Multiprocessor (MP) kernels not affected. ok guenther, deraadt
2014-10-30XFER_FREE is not used, ciao.Martin Pieuchot
2014-10-30clean up verbiage around the calculations; ok ingo jmc ottoTheo de Raadt
2014-10-30Don't mention old systems where realloc(NULL, n) didn't work as weTodd C. Miller
don't want to give people the idea that this is non-portable (it has been present since C89). OK deraadt@ schwarze@
2014-10-30Add some pkill and sleep to make socket splicing performance testsAlexander Bluhm
more reliable.
2014-10-30Major bugsquashing with respect to -offset and -width:Ingo Schwarze
1. Support specifying the .Bd and .Bl -offset as a macro default width; while here, simplify the code handling the same for .Bl -width. 2. Correct handling of .Bl -offset arguments: unlike .Bd -offset, the arguments "left", "indent", and "indent-two" have no special meaning. 3. Fix the scaling of string length -offset and -width arguments in -Thtml. Triggered by an incomplete documentation patch from bentley@.
2014-10-30muliply to get correct size for free. reported by kspillnerTed Unangst
2014-10-30Do not use void * for pointer artithmetics, it's a GNU extension, fromMartin Pieuchot
Patrick Wildt.
2014-10-30Do not enable interrupts before attaching usb(4), fix a panic when anMartin Pieuchot
Express Card is plugged with USB devices on it. While here do not print an unitialized error value if xhci_init() fails, from Patrick Wildt.
2014-10-30Calculate the Route String when attaching a new device. This is stillMartin Pieuchot
not enough to attach Super Speed devices below USB 3 hubs, but we're getting there. While here reset `acten` when re-enqueuing an interrupt transfers.
2014-10-30for convenience, let obj-clean imply cleanIngo Schwarze
2014-10-30zero the correct size, then free it.Ted Unangst
2014-10-30add some sizes to free()Ted Unangst
2014-10-30Fix whitespace errors in libevent.Alexander Bluhm
OK nicm@
2014-10-30my mistake. we already did increase buffers to 16k; increasing to 64kTed Unangst
would be the next stage of embiggening. restore 16k.
2014-10-30rework the poll loop to poll in both directions so it doesn't get stuckTed Unangst
if one pipe stalls out. from a diff by Arne Becker. (buffer size left alone for now)
2014-10-30use ressl constant; from Jan KlemkowTed Unangst
2014-10-30mandoc.1: fix a macro error in previousJason McIntyre
main.c: add -K to usage() and wrap nicely ok schwarze
2014-10-30The fdsz and n_events variables contain unsigned values that areAlexander Bluhm
derived from size_t and passed to functions as size_t parameters. Change them from int to size_t to avoid compiler warnings. OK doug@ nicm@
2014-10-30support UTF-8 and ISO-8859-1 input by integrating modified partsIngo Schwarze
of kristaps@' version of the preconv(1) utility into mandoc(1); positive feedback from bentley@ and no concern raised when shown on tech@
2014-10-29After removing all the #ifdef, the wrappers in evutil are ratherAlexander Bluhm
useless. Let libevent call the libc functions directly. OK nicm@
2014-10-29Remove workaround for Mac OS X kqueue bug.Alexander Bluhm
OK nicm@
2014-10-29Do not cast a (const void *) pointer to (void *) to avoid a warning.Alexander Bluhm
OK nicm@
2014-10-29dial down the direness of the warning; vnd isn't going anywhere yetTed Unangst
2014-10-29Add a test the checks the syslogd !prog !!prog !* feature.Alexander Bluhm
2014-10-29Calling a function to htonl() a constant 32-bit value into a stackKenneth R Westerback
variable and memcpy() that value into 4 bytes of malloc()'d space seems roundabout. Just memcpy() a four byte constant string into the malloc()'d space as required and kill putULong(). No functional change.
2014-10-29Update test outputs to reflect the fact that routes to loopback addressesMartin Pieuchot
are plain local routes.
2014-10-29remove ugly return value castsTheo de Raadt
2014-10-29convert simple cases of select() to poll()Theo de Raadt
ok doug
2014-10-29delete obscure workaround for a bug in SunOS.Theo de Raadt
(But leave the VMS workaround intact)
2014-10-29use poll() instead of the select malloc/free dance which was used toTheo de Raadt
avoid fd_set overflows. Back when I was young, I fixed these throughout the tree, and the world continued on ignoring the issue... The malloc/free dance was used because poll() was not very portable yet. Now poll() is commonplace, and we should use this safer API. ok guenther millert
2014-10-29Add prototypes for xdr_{accepted,rejected}_reply() and svcudp_enablecache()Philip Guenther
(Both NetBSD and FreeBSD provide these prototypes) ok millert@
2014-10-29use poll() instead of select(), thereby removing the fd_set malloc/freeTheo de Raadt
dance which was used to avoid fd_set overflow with high file descriptor values. ok doug
2014-10-29test various recent improvements of special character renderingIngo Schwarze
2014-10-29Some fine tuning of console rendering of named special characters.Ingo Schwarze
Correct ASCII rendering: \(lb \(<> \(sd Make ASCII rendering agree with groff, using backspace overstrike: \(da \(ua \(dA \(uA \(fa \(c* \(c+ \(ib \(ip \(/_ \(pp \(is \(dd \(dg
2014-10-29replace the use of select and hand rolled deferral of signal handlingDavid Gwynne
with libevent. this has been in snaps for a while without any negative (or positive) feedback. review and tweaks by bluhm@ nicm@ ok bluhm@ deraadt@
2014-10-29In terminal output, unify handling of Unicode and numbered characterIngo Schwarze
escape sequences just like it was earlier implemented for -Thtml. Do not let control characters other than ASCII 9 (horizontal tab) propagate to the output, even though groff allows them; but that really doesn't look like a great idea. Let mchars_num2char() return int such that we can distinguish invalid \N syntax from \N'0'. This also reduces the danger of signed char issues popping up.
2014-10-28add a regression test for the pfctl parser bug recently fixed bySebastian Benoit
mikeb@ in pfctl/parse.y rev 1.641. with feedback from mikeb sthen and henning