Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-10-31 | Update httpd(8) to use libtls instead of libressl. | Joel Sing | |
2014-10-31 | Update ftp(1) to use libtls instead of libressl. | Joel Sing | |
2014-10-31 | Rename libressl to libtls to avoid confusion and to make it easier to | Joel Sing | |
distinguish between LibreSSL (the project) and libressl (the library). Discussed with many. | |||
2014-10-31 | redirect error output to stderr instead of stdout | Gleydson 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-31 | Use CDIAGFLAGS from bsd.own.mk and append additional warning flags. | Alexander Bluhm | |
All warnings have been fixed in libevent. OK nicm@ | |||
2014-10-31 | Use understandable messages when the per-xfer poison value is incorrect. | Martin Pieuchot | |
Prodded by a comment from stsp@. | |||
2014-10-31 | The config logic with "rl needs-flag" got | Jonathan Gray | |
removed back in 2011. Remove code under #if NRL > 0. ok miod@ | |||
2014-10-31 | remove a duplicate pckbdvar.h include under NGSCKBD > 0 | Jonathan Gray | |
gsckbd was removed back in 2008 so this was never defined. | |||
2014-10-31 | remove unused and uneeded includes under NCY_ISA > 0 and NCY_PCI > 0 | Jonathan Gray | |
where cy.h is not included. discovered with a script from guenther@ | |||
2014-10-31 | Make default output matches status. Hackish but we are not allowed to | Antoine Jacoutot | |
use svc_default_enabled_flags like any other function... | |||
2014-10-31 | Useless use of sed(1). | Antoine Jacoutot | |
ok swartze@ | |||
2014-10-31 | #if NSWDISPLAY > 0 -> #if NWSDISPLAY > 0 | Jonathan Gray | |
now wsdisplay_suspend() will run on suspend | |||
2014-10-31 | Fix a missing include in amd64 pmap.c that resulted in an erroneous memory | Mike Larkin | |
map entry being entered in uniprocessor (UP) kernels. Multiprocessor (MP) kernels not affected. ok guenther, deraadt | |||
2014-10-30 | XFER_FREE is not used, ciao. | Martin Pieuchot | |
2014-10-30 | clean up verbiage around the calculations; ok ingo jmc otto | Theo de Raadt | |
2014-10-30 | Don't mention old systems where realloc(NULL, n) didn't work as we | Todd 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-30 | Add some pkill and sleep to make socket splicing performance tests | Alexander Bluhm | |
more reliable. | |||
2014-10-30 | Major 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-30 | muliply to get correct size for free. reported by kspillner | Ted Unangst | |
2014-10-30 | Do not use void * for pointer artithmetics, it's a GNU extension, from | Martin Pieuchot | |
Patrick Wildt. | |||
2014-10-30 | Do not enable interrupts before attaching usb(4), fix a panic when an | Martin 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-30 | Calculate the Route String when attaching a new device. This is still | Martin 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-30 | for convenience, let obj-clean imply clean | Ingo Schwarze | |
2014-10-30 | zero the correct size, then free it. | Ted Unangst | |
2014-10-30 | add some sizes to free() | Ted Unangst | |
2014-10-30 | Fix whitespace errors in libevent. | Alexander Bluhm | |
OK nicm@ | |||
2014-10-30 | my mistake. we already did increase buffers to 16k; increasing to 64k | Ted Unangst | |
would be the next stage of embiggening. restore 16k. | |||
2014-10-30 | rework the poll loop to poll in both directions so it doesn't get stuck | Ted Unangst | |
if one pipe stalls out. from a diff by Arne Becker. (buffer size left alone for now) | |||
2014-10-30 | use ressl constant; from Jan Klemkow | Ted Unangst | |
2014-10-30 | mandoc.1: fix a macro error in previous | Jason McIntyre | |
main.c: add -K to usage() and wrap nicely ok schwarze | |||
2014-10-30 | The fdsz and n_events variables contain unsigned values that are | Alexander 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-30 | support UTF-8 and ISO-8859-1 input by integrating modified parts | Ingo 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-29 | After removing all the #ifdef, the wrappers in evutil are rather | Alexander Bluhm | |
useless. Let libevent call the libc functions directly. OK nicm@ | |||
2014-10-29 | Remove workaround for Mac OS X kqueue bug. | Alexander Bluhm | |
OK nicm@ | |||
2014-10-29 | Do not cast a (const void *) pointer to (void *) to avoid a warning. | Alexander Bluhm | |
OK nicm@ | |||
2014-10-29 | dial down the direness of the warning; vnd isn't going anywhere yet | Ted Unangst | |
2014-10-29 | Add a test the checks the syslogd !prog !!prog !* feature. | Alexander Bluhm | |
2014-10-29 | Calling a function to htonl() a constant 32-bit value into a stack | Kenneth 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-29 | Update test outputs to reflect the fact that routes to loopback addresses | Martin Pieuchot | |
are plain local routes. | |||
2014-10-29 | remove ugly return value casts | Theo de Raadt | |
2014-10-29 | convert simple cases of select() to poll() | Theo de Raadt | |
ok doug | |||
2014-10-29 | delete obscure workaround for a bug in SunOS. | Theo de Raadt | |
(But leave the VMS workaround intact) | |||
2014-10-29 | use poll() instead of the select malloc/free dance which was used to | Theo 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-29 | Add prototypes for xdr_{accepted,rejected}_reply() and svcudp_enablecache() | Philip Guenther | |
(Both NetBSD and FreeBSD provide these prototypes) ok millert@ | |||
2014-10-29 | use poll() instead of select(), thereby removing the fd_set malloc/free | Theo de Raadt | |
dance which was used to avoid fd_set overflow with high file descriptor values. ok doug | |||
2014-10-29 | test various recent improvements of special character rendering | Ingo Schwarze | |
2014-10-29 | Some 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-29 | replace the use of select and hand rolled deferral of signal handling | David 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-29 | In terminal output, unify handling of Unicode and numbered character | Ingo 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-28 | add a regression test for the pfctl parser bug recently fixed by | Sebastian Benoit | |
mikeb@ in pfctl/parse.y rev 1.641. with feedback from mikeb sthen and henning |