Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-01-30 | Make urtwn(4) run slot time updates from a USB task. | Stefan Sperling | |
Fixes 'usbd_do_request: not in process context' warnings introduced recently. Fix reported and confirmed by Mikhail aka mp39590 aka misha | |||
2017-01-30 | When a flag option is used in a format, it should use the number form | Nicholas Marriott | |
not string. | |||
2017-01-30 | Fix TLS tests. Keys and log files are now in obj, not in obj/htdocs | Reyk Floeter | |
2017-01-30 | Rework fill mode handling for -man -Thtml. | Ingo Schwarze | |
Basically, open <pre> whenever printing text in no-fill mode and it is not already open, and close it whenever printing something that cannot be inside <pre>. This fixes a crash reported by Michael <Stapelberg at debian dot org> in the French Linux chroot(2) manual and also improves rendering for OpenBSD pages like DPMSGetTimeouts(3) and GLwDrawingArea(3). These changes also permitted retiring struct mhtml. | |||
2017-01-30 | Adjust CLEANFILES for new httpd root | Reyk Floeter | |
2017-01-30 | Enable ieee80211_edca_table, which was under #if 0. This table can be used | Stefan Sperling | |
by drivers to pass default EDCA parameters to firmware instead of passing local hardcoded values. ok millert@ | |||
2017-01-30 | unbreak httpd regress tests after wobj change | Reyk Floeter | |
Previously, the tests used the obj dir as the httpd chroot/root. But the www user cannot access any files since we switched obj to 0750. The fix is to create another 0755 subdirectory obj/htdocs as the root. | |||
2017-01-30 | whitespace, from bluhm@ | Sebastian Benoit | |
2017-01-30 | Make rtwn(4) and urtwn(4) tell the hardware about short preamble and | Stefan Sperling | |
short slot time settings. ok mpi@ | |||
2017-01-30 | removes the pf_consistency_lock and protects the users with | Sebastian Benoit | |
NET_LOCK(). pfioctl() will need the NET_LOCK() anyway. So better keep things simple until we're going to redesign PF for a MP world. fixes the crash reported by Kaya Saman. ok mpi@, bluhm@ | |||
2017-01-30 | Mention MODGO_LDFLAGS. | Antoine Jacoutot | |
2017-01-30 | Fix size passed to free(9) | Jeremie Courreges-Anglas | |
ok tb@ stsp@ | |||
2017-01-30 | Drop empty line. | Antoine Jacoutot | |
2017-01-30 | sync | Theo Buehler | |
2017-01-30 | Stop athn(4) 11n hostap from applying HT protection to non-11n clients. | Stefan Sperling | |
The driver was checking the wrong flag by mistake. ok phessler@ mpi@ | |||
2017-01-30 | Fix error path of range requests, found while reviewing byte range support. | Reyk Floeter | |
OK jsg@ | |||
2017-01-30 | Prevent athn(4) from using RTS for non-data frames. | Stefan Sperling | |
ok mpi@ | |||
2017-01-30 | tweak previous; | Jason McIntyre | |
2017-01-30 | Sync md sets for arm64, continuing to omit the parts that need to move | Jonathan Gray | |
out of mi for now. | |||
2017-01-30 | build mkuboot on arm64 | Jonathan Gray | |
2017-01-30 | fully unbreak: some $SSH invocations did not have -F specified and | Damien Miller | |
could pick up the ~/.ssh/config of the user running the tests | |||
2017-01-30 | Fix ELF64_R_TYPE(reloc->r_info) to have the same type on mips64le | Philip Guenther | |
as on other LP64 archs, __uint64_t, so that printf-like functions don't require extra casting...then eliminate the extra cast in ld.so/mips64/rtld_machine.c discussed with miod ok visa@ | |||
2017-01-30 | partially unbreak: was not specifying hostname on some $SSH invocations | Damien Miller | |
2017-01-30 | Document BN_set_flags(3) and BN_get_flags(3). | Ingo Schwarze | |
jsing@ confirmed that these macros are public and worth documenting. | |||
2017-01-30 | revise keys/principals command hang fix (bz#2655) to consume entire | Damien Miller | |
output, avoiding sending SIGPIPE to subprocesses early; ok dtucker@ | |||
2017-01-30 | small cleanup post SSHv1 removal: | Damien Miller | |
remove SSHv1-isms in commented examples reorder token table to group deprecated and compile-time conditional tokens better fix config dumping code for some compile-time conditional options that weren't being correctly skipped (SSHv1 and PKCS#11) | |||
2017-01-30 | some explicit NULL tests when dumping configured forwardings; | Damien Miller | |
from Karsten Weiss | |||
2017-01-30 | misplaced braces in test; from Karsten Weiss | Damien Miller | |
2017-01-30 | don't dereference authctxt before testing != NULL, it causes compilers | Damien Miller | |
to make assumptions; from Karsten Weiss | |||
2017-01-29 | Seriously warn against calling BN_init(3), BN_MONT_CTX_init(3), | Ingo Schwarze | |
and BN_RECP_CTX_init(3). They are not only deprecated but so dangerous that they are almost unusable. I found these scary traps while reading the code in order to document BN_set_flags(3). While here, delete ERR_get_error(3) from SEE ALSO. | |||
2017-01-29 | remove unused variables | Charles Longeau | |
ok krw@ guenther@ | |||
2017-01-29 | Add -n to break-pane. | Nicholas Marriott | |
2017-01-29 | remove pesky blank line: sorry for not spotting this in previous; | Jason McIntyre | |
2017-01-29 | Fix typo in ~C error message for bad port forward cancellation. | Darren Tucker | |
bz#2672, from Brad Marshall via Colin Watson and Ubuntu's bugtracker. | |||
2017-01-29 | Document restrictions that apply to COMMENT | Daniel Jakots | |
better wording from jmc@, ok jmc@ sthen@ | |||
2017-01-29 | Change the IPv4 pr_input function to the way IPv6 is implemented, | Alexander Bluhm | |
to get rid of struct ip6protosw and some wrapper functions. It is more consistent to have less different structures. The divert_input functions cannot be called anyway, so remove them. OK visa@ mpi@ | |||
2017-01-29 | return the sio_open notes to the audio section; from michael reed | Jason McIntyre | |
2017-01-29 | Marko Kreen contributed significantly to the ocsp stuff for libtls | Bob Beck | |
2017-01-29 | Move the ocsp staple to being part of the keypair structure internally, | Bob Beck | |
so that it does not send back bogus staples when SNI is in use. (Further change is required to be able to use staples on all keypairs and not just the main one) ok jsing@ | |||
2017-01-29 | Send the function codes from the error functions to the bit bucket, | Bob Beck | |
as was done earlier in libssl. Thanks inoguchi@ for noticing libssl had more reacharounds into this. ok jsing@ inoguchi@ | |||
2017-01-29 | Ensure the build user can write to the GLOBAL_AUTOCONF_CACHE file by | Robert Peichaer | |
creating or truncating it with the proper ownership and permissions. OK tb@ | |||
2017-01-29 | In dwctwo(4), fix an off-by-one in frame interval calculation. | Stefan Sperling | |
Fix stolen from Linux commit 9ed04d976146cf10dfa4c71171434af7c0348747 ok visa@ | |||
2017-01-29 | Previous commit broke build on loongson. Refix by adding | Visa Hankala | |
an explicit type cast. Reported and tested by matthieu@ | |||
2017-01-29 | Put comment back in the right place. | Joel Sing | |
2017-01-29 | Avoid clearing the mac_packet flag in the wrong place. | Joel Sing | |
In many cases we got away with this, however if a server sends multiple handshake messages in the same record only the first message would be added to the MAC. Should fix breakage reported by various people. | |||
2017-01-29 | Fix tcpdump(8) display of duration values provided in 802.11 control frames. | Stefan Sperling | |
These values are in microseconds, not milliseconds. ok sthen@ | |||
2017-01-29 | eliminate one useless struct and one level of indirection; | Ingo Schwarze | |
no functional change | |||
2017-01-29 | obvious protection against null pointer, because it's quite possible for cgn | Marc Espie | |
to not have a parent... | |||
2017-01-29 | ouch, smallest regress ever. Can't believe no-one got bitten by this | Marc Espie | |
2017-01-29 | The iwm_get_active_dwell() and iwm_get_passive_dwell() functions are | Stefan Sperling | |
unused, and where removed in Linux iwlwifi git commit 9437e9941025bc83d3dd43f2927019149029f667. Patch by Imre Vadasz. |