summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-07-26Import test suite for doas. Relies on recently committed command matchingVadim Zhukov
functionlity with -C flag.
2015-07-26Implement command matching without execution. This just extendsVadim Zhukov
functionality of the -C flag, so we are not introducing more garbage. Input and okay from jmc@ (documentation) and tedu@ (everything).
2015-07-26Remove support for automatically checking files out of RCS. TheTodd C. Miller
behavior is confusing to users and even GNU patch no longer does it by default. OK krw@ guenther@
2015-07-26Fix ba# attribute in rdroot entry. It should be 4096 (a valid size forKenneth R Westerback
a FFS block), not 4480 (the size of the partition). ok millert@
2015-07-26Always initialize the b_error field and B_ERROR flag before usingKenneth R Westerback
a buf. Otherwise stale data might cause a successful I/O to be seen as a failed I/O. ok tedu@
2015-07-26Whoops, "screen" we also change kbs=^H to kbs=\177 now (this is why weNicholas Marriott
need a list of changes!)
2015-07-26Update to terminfo-20150725. Also add a note at the start about ourNicholas Marriott
(two) local changes.
2015-07-26Make sure pci_intr_map() will perform proper interrupt swizzling for devicesMiod Vallat
behind a bridge, if the SRM didn't pick an interrupt line for them.
2015-07-26When attaching on an alpha system, get the current textmode resolution byMiod Vallat
querying the 6845 registers, and preserve it if it is larger than 80x25 yet plausible. This is necessary to properly operate on the Alphabook 1 where the vga display is running in a 100x37 textmode. Other platforms are not affected.
2015-07-26Copy relocations can't be jump-slot relocations, so delete the test for that.Philip Guenther
ok miod@
2015-07-26Make pcic_ident_ok() completely silent in case of failure.Miod Vallat
2015-07-25Only store mod/ref flags in the vm_page_md struct, not in every pv_entry.Miod Vallat
2015-07-25Teach ifconfig(8) man page about the mpw(4) commands.Rafael Zalamena
ok jmc@
2015-07-25double words fix; docs are slowly getting moved to mdoc, but thisIgor Sobrado
change will help people translating them. ok jmc@, schwarze@
2015-07-25Place the ASN.1 template macros (and remaining implement macros) underJoel Sing
#ifndef LIBRESSL_INTERNAL - we're not using these anymore!
2015-07-25double word fix.Igor Sobrado
ok jmc@, schwarze@
2015-07-25Manually expand ASN.1 template macros - only change in generated assemblyJoel Sing
is due to line numbering.
2015-07-25Expand another ASN.1 template macro that snuck through last time around.Joel Sing
No change in generated assembly.
2015-07-25Expand ASN.1 template macros that got missed in the last pass - only changeJoel Sing
to generated assembly is due to line numbers.
2015-07-25Expand ASN.1 template macros - the generated assembly only differs byJoel Sing
changes to line numbers.
2015-07-25Expand ASN.1 template macros - no change in generated assembly.Joel Sing
2015-07-25Expand ASN.1 template macros - no change in generated assembly.Joel Sing
2015-07-25Expand another wall of ASN.1 template macros - no change to generatedJoel Sing
assembly.
2015-07-25Expand ASN.1 template macros - no change in generated assembly.Joel Sing
2015-07-25Expand ASN.1 template macros - no change in generated assembly.Joel Sing
2015-07-25Expand ASN.1 template macros - the generated assembly only differs byJoel Sing
changes to line numbers.
2015-07-25Simplify and make tag_put() more efficient by integrating tag_get()Ingo Schwarze
into it and by only handling NUL-terminated strings. Minus 25 lines of code, no functional change.
2015-07-25implement tagging for .ErIngo Schwarze
2015-07-25basic tag support for function names; written at YYCIngo Schwarze
2015-07-25basic support for tag priorities; written at YYCIngo Schwarze
2015-07-25some radius bits; help/ok yasuokaJason McIntyre
2015-07-25Use .Cm rather than .Ar for fixed strings passed as arguments (commandIngo Schwarze
modifiers). Patch from Michael Reed <m dot reed at mykolab dot com>, tweaked by jmc@.
2015-07-25Fix usage() output.Antoine Jacoutot
from Michael Reed
2015-07-24Expand ASN.1 template macros - no change in generated assembly.Joel Sing
2015-07-24Expand ASN.1 template macros - no change in generated assembly.Joel Sing
2015-07-24no need to mention /var/tmp; from thanos tsouanasJason McIntyre
2015-07-24Expand ASN.1 template macros - the generated assembly only differs byJoel Sing
changes to line numbers.
2015-07-24an TLS -> a TLS; from thanos tsouanasJason McIntyre
2015-07-24Expand ASN1_ITEM_TEMPLATE/ASN1_EX_TEMPLATE_TYPE/ASN1_ITEM_TEMPLATE_ENDJoel Sing
macros - the generated assembly only differs by changes to line numbers.
2015-07-24Expand IMPLEMENT_ASN1_MSTRING macros - the generated assembly only differsJoel Sing
by changes to line numbers.
2015-07-24Switch back into counting bytes rather than blocks. We can't justAlexandre Ratchov
multiply the block count by the block size to get the bytes count because they won't wrap correctly.
2015-07-24Fix arithmetic mistake causing errors when there are more xruns on theAlexandre Ratchov
record side than on the play side. This almost never happens are record buffer are much larger than play buffers.
2015-07-24Crank watchdog timeout from 2 to 4 seconds.Alexandre Ratchov
2015-07-24Log when device is disconnected.Alexandre Ratchov
2015-07-24Clear watchdog timer when device is closed, fixes use-after-free inAlexandre Ratchov
error code-paths when device is closed before audio is stopped.
2015-07-24Convert tls1_process_ticket to CBS.Doug Hogan
ok miod@ jsing@
2015-07-24Further improve syntax error reporting in doas:Vadim Zhukov
- teach parser to recover after error, allowing to report many errors instead of the first one only; - fix remaining error printouts without exact position. Some ideas were taken from diff sent by dlg@ earlier, thanks! okay tedu@, dlg@
2015-07-24Convert tls1_process_sigalgs to CBS.Doug Hogan
ok miod@ jsing@
2015-07-24Convert ssl3_get_record to CBS.Doug Hogan
ok miod@ jsing@
2015-07-24if we free the mbuf in the rx path, clear the pointer to it so we dontDavid Gwynne
try and queue it for the stack and cause a use after free. found by maxime villard and brainy