Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-02-14 | shut up about tabs in SYNOPSIS .Fd lines, there is no good way to avoid them | Ingo Schwarze | |
2015-02-14 | Fix pod markup error. | Miod Vallat | |
2015-02-14 | test server rekey limit | Markus Friedl | |
2015-02-14 | Try and fix a bunch of memory leaks upon error; | Miod Vallat | |
ok tedu@ about 7 months ago and I was sitting upon this diff for no reason | |||
2010-10-01 | import OpenSSL-1.0.0a | Damien Miller | |
2015-02-14 | Tests that syslogd uses the expected TLS version. | Alexander Bluhm | |
2015-02-14 | Call tls_config_set_protocols(TLS_PROTOCOLS_ALL) also if the hostname | Alexander Bluhm | |
and certificate are not verified. OK jsing@ | |||
2015-02-14 | Don't defer initialization. config_defer(9) doesn't defer things as | Masao Uebayashi | |
deferred as interrupt starts working. | |||
2015-02-14 | Consistently check the return value from BN_CTX_get() on assignment. | Joel Sing | |
This is the same as the previous larger commit, however it would seem the GOST part got missed. ok beck@ doug@ | |||
2015-02-14 | Define UPS_PORT_TEST as FreeBSD/NetBSD do. | Masao Uebayashi | |
2015-02-14 | Handle (poll) HCD interrupt right after initialization to immediately mark | Masao Uebayashi | |
ports as enabled/connected. | |||
2015-02-13 | End sentences with dots. | Miod Vallat | |
2015-02-13 | Adapt the maxunix test, the syslogd -a error semantic has changed. | Alexander Bluhm | |
Increase timeouts and remove races, so that the syslogd tests pass on my sparc64 machine. | |||
2015-02-13 | When too many -a requests on the syslogd command line cannot be | Alexander Bluhm | |
fulfilled, it is better to fail hard. Then the user can adjust rc.conf.local or the #define MAXUNIX. OK millert@ | |||
2015-02-13 | make rekey_limit for sshd w/privsep work; ok djm@ dtucker@ | Markus Friedl | |
2015-02-13 | Include sys/stdint.h for SIZE_MAX instead of relying on the misplaced | Todd C. Miller | |
define in sys/limits.h. OK guenther@ | |||
2015-02-13 | implicit declaration of function 'free'; add missing stdlib.h | David Coppa | |
OK sthen@ | |||
2015-02-13 | Call tls_config earlier; otherwise TLS_PROTOCOLS_ALL (to allow TLSv1.0 etc) | Stuart Henderson | |
was only called if -S was used. Fixes TLSv1.0/1.1. Problem reported by nigel@, ok jsing | |||
2015-02-13 | Don't leak memory on errors - fixes coverity issues 105353 105253 | Bob Beck | |
ok guenther@ jsg@ | |||
2015-02-13 | fix leaking of bn, coverity issue 105351 | Bob Beck | |
ok doug@ | |||
2015-02-13 | Direct people to netstat for the new multicast routing sysctls. | Philip Guenther | |
problem noted by dcoppa@ ok claudio@ | |||
2015-02-12 | Prevent an archive from esacaping the current directory by itself: | Philip Guenther | |
when extracting a symlink whose value is absolute or contains ".." components, just create a zero-length normal file (with additional tracking of the mode and hardlinks to the symlink) until everything else is extracted, then go back and replace it with the requested link (if its still that zero-length placeholder). This and previous symlink and ".." path fixes prompted by a report from Daniel Cegielka (daniel.cegielka (at) gmail.com) ok millert@ | |||
2015-02-12 | Free the buffers used for the sysctl. OK sthen@ | Claudio Jeker | |
2015-02-12 | Make syslogd tests more reliable. Increase the allowed range of | Alexander Bluhm | |
lost log messages. Improve the synchronisation of client and server. | |||
2015-02-12 | Allow constraints URL without leading path (eg. "https://www.openbsd.org"). | Reyk Floeter | |
Fixes segfault on configuration load time, as reported by Donovan Watteau. | |||
2015-02-12 | For tar without -P, if a path in the archive has any ".." components then | Philip Guenther | |
strip everything up to and including the last of them (if it ends in ".." then it becomes ".") This mostly follows GNU tar's behavior, except for 'tar tf' and 'tar xvf' we report the modified path that was actually created instead of the raw path from the archive ok w/tweak millert@, deraadt@ | |||
2015-02-12 | Convert to if_input(). | Martin Pieuchot | |
ok dlg@ | |||
2015-02-12 | Remove useless extern definitions of nselcoll and selwait. | Todd C. Miller | |
OK guenther@ | |||
2015-02-12 | Prevent sshd spamming syslog with "ssh_dispatch_run_fatal: disconnected". | Darren Tucker | |
ok markus@ | |||
2015-02-12 | Fix a bug introduced in the last commit that broke EOF handling | Todd C. Miller | |
in the normal, blocking case. No longer passes regress but that will be fixed later. OK jca@ | |||
2015-02-12 | add missing .Pa macros; patch from Theo Buehler <theo at math dot ethz dot ch> | Ingo Schwarze | |
2015-02-12 | After almost five years and 92 revisions, mdoc_macro.c rev. 1.139 | Ingo Schwarze | |
finally fixed the four issues explained in the mdoc_macro.c rev. 1.47 commit message. | |||
2015-02-12 | be more explicit about how -A and -P work, and fix a booboo in previous; | Jason McIntyre | |
help/ok claudio | |||
2015-02-12 | Initialize buffer pointers passed to get_sysctl to NULL; otherwise they point | Stuart Henderson | |
to random memory so when the sysctl-estimate is too small, the realloc() fails. Problem reported by Ze Loff, ok claudio | |||
2015-02-12 | Do not confuse .Bl -column lists that just broken another block | Ingo Schwarze | |
with newly opened .Bl -column lists; fixing an assertion failure jsg@ found with afl: test case #481, Bl It Bl -column It Bd El text text El | |||
2015-02-12 | Delete the mdoc_node.pending pointer and the function calculating | Ingo Schwarze | |
it, make_pending(), which was the most difficult function of the whole mdoc(7) parser. After almost five years of maintaining this hellhole, i just noticed the pointer isn't needed after all. Blocks are always rewound in the reverse order they were opened; that even holds for broken blocks. Consequently, it is sufficient to just mark broken blogs with the flag MDOC_BROKEN and breaking blocks with the flag MDOC_ENDED. When rewinding, instead of iterating the pending pointers, just iterate from each broken block to its parents, rewinding all that are MDOC_ENDED and stopping after processing the first ancestor that it not MDOC_BROKEN. For ENDBODY markers, use the mdoc_node.body pointer in place of the former mdoc_node.pending. This also fixes an assertion failure found by jsg@ with afl, test case #467 (Bo Bl It Bd Bc It), where (surprise surprise) the pending pointer got corrupted. Improved functionality, minus one function, minus one struct field, minus 50 lines of code. | |||
2015-02-12 | Remove a chunk that should have been deleted in r1.166, this was safe | Martin Pieuchot | |
because clearing fields twice is not a problem. Yeah, I suck at applying diff. ok henning@, claudio@ | |||
2015-02-12 | Set external DMA address configuration interface. | Masao Uebayashi | |
2015-02-12 | Fix typos. | Masao Uebayashi | |
2015-02-12 | Provide interface for external DMA address configuration. | Masao Uebayashi | |
2015-02-12 | When purging the routes corresponding to an ifp, skip the routing tables | Martin Pieuchot | |
of different routing domains. The same change has been applied to rt_if_track() in r1.205. ok claudio@ | |||
2015-02-12 | switch back to IRQ_NONE/IRQ_HANDLED | Jonathan Gray | |
2015-02-12 | Rename escape_uri() to url_encode() because it is the opposite of | Reyk Floeter | |
url_decode(). No functional change. | |||
2015-02-12 | Take a reference to prevent cmdq being freed during the command. Can | Nicholas Marriott | |
happen to cfg_cmd_q (possibly others) when source-file recurses into cmdq_continue. Fixes bug reported by Ismail Donmez and Theo Buehler. | |||
2015-02-12 | Don't clear ICRNL when editing mode is off, so that character local echo | Philip Guenther | |
mode don't echo ^M locally analysis and patch from Stanislav Brabec (sbrabec (at) suse.cz) | |||
2015-02-12 | Convert to if_input(). | Martin Pieuchot | |
ok dlg@ | |||
2015-02-12 | Add and use macros for linux memory barriers. Fix the call in | Jonathan Gray | |
i915_gem_object_flush_fence() to be mb() not wmb() while here. | |||
2015-02-12 | Use ksh arithmethic instead of expr. | Robert Peichaer | |
Noted by todd@ OK krw@ halex@ | |||
2015-02-12 | Remove a stray ;. | Masao Uebayashi | |
2015-02-12 | Move register accessor macros to saner place. | Masao Uebayashi | |