summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-08-17change drm memory barriers to be closer to what linux does onJonathan Gray
amd64 and i386 ok kettenis@
2019-08-17Move play blocks count from the audio_softc to the audio_buf structure.Alexandre Ratchov
As the audio_buf structure is per-direction, this makes play and recording code similar. No behavior change.
2019-08-17Move block size and block count calculations in their own routines.Alexandre Ratchov
Makes the code easier to read, no behabior change.
2019-08-16sort; OK deraadt@Ingo Schwarze
2019-08-16syncTheo de Raadt
2019-08-16check that software de/encrypt is possible: under hardwareRichard Procter
offload, it needn't be. the stack must otherwise rely on every offloading driver correctly handling all frames governed by a given key. ok stsp@
2019-08-16syncTheo de Raadt
2019-08-16Send snmpctl(8) to the great bitbucket in the sky. You've served us well.Martijn van Duren
People are now expected to use snmp(1) for all their snmp client needs. "Go ahead" deraadt@
2019-08-16link to the new EC_KEY_METHOD_new(3) pageIngo Schwarze
and mention a trap set by EC_KEY_copy(3)
2019-08-16document the EC_KEY_METHOD function tableIngo Schwarze
2019-08-16document EC_KEY_get_ex_new_index(3), EC_KEY_get_ex_data(3),Ingo Schwarze
and EC_KEY_set_ex_data(3)
2019-08-16Add explanation for the [IKE/ESP only] column of the transform table.tobhe
Ok kn@
2019-08-16Add a flag to reverse sort in the various choose modes, from BenjaminNicholas Marriott
Poirier in GitHub issue 1875.
2019-08-16some cleanup:Ingo Schwarze
* do not jump back and forth among different arguments and flags * add the missing STANDARDS section * mark up ASN.1 type names * and several wording improvements
2019-08-16Call comma-separated lists as such to clarify semanticskn
Options such as Ciphers take values that may be a list of ciphers; the complete list, not indiviual elements, may be prefixed with a dash or plus character to remove from or append to the default list respectively. Users might read the current text as if each elment took an optional prefix, so tweak the wording from "values" to "list" to prevent such ambiguity for all options supporting this semantics (those that provide a list of available elements via "ssh -Q ..."). Input and OK jmc
2019-08-16minor cleanup:Ingo Schwarze
* add the missing STANDARDS section * mark up ASN.1 type names * and minor wording improvements and typo fixes
2019-08-16grid_view_delete_cells does need to clear, GitHub issue 1871.Nicholas Marriott
2019-08-16Fix segfault in parser when specifying an invalid transform.tobhe
For all transforms the error case only printed the error but did not exit. YYERROR was added to exit gracefully instead of segfaulting later. ok benno@
2019-08-16include sshbuf-misc.c in SRCS_BASEDamien Miller
2019-08-16switch percent_expand() to use sshbuf instead of a limited fixed buffer;Damien Miller
ok markus@
2019-08-16knock out useless Pp;Jason McIntyre
2019-08-16ifq_hdatalen should keep the mbuf it's looking at, not leak it.David Gwynne
ie, use ifq_deq_rollback after looking at the head mbuf instead of ifq_deq_commit. this is used in tun/tap, where it had the effect that you'd get the datalen for the packet, and then when you try to read that many bytes it had gone. cool and normal. this was found by a student who was trying to do just that. i've always just read the packet into a large buffer.
2019-08-16STP works fine on etherip(4), it was gif(4) that lacked a MAC address.David Gwynne
getting etherip(4) to talk to a switch so i could verify this was pretty fun. remi@ pointed this bit of the manpage out somewhere, but it didn't seem right anymore since etherip(4) was split out of gif(4). these days if we have an interface that can be added to a bridge, we try to make it look like an actual ethernet interface, which includes having a mac address. we don't really have interfaces that change modes and have these edge cases anymore.
2019-08-15pfctl_reset() must set syncookies settings back to defaultAlexandr Nedvedicky
(bug found and fix tested by Jesper Wallin) OK deraadt OK kn
2019-08-15minor cleanup:Ingo Schwarze
* add the missing STANDARDS section * mark up ASN.1 type names * and minor wording improvements
2019-08-15NMEA 4.1 has one more field in the RMC message; ok kettenis@Otto Moerbeek
2019-08-15some cleanup:Ingo Schwarze
* do not jump back and forth between different arguments * display the flags in a proper list * add the missing STANDARDS section * mark up ASN.1 type names * and minor wording improvements
2019-08-15auich_freemem() returns void. while here fix a typo in an error message. ↵miko
audio playback still works under virtualbox. ok ratchov@
2019-08-15document but do not recommend EVP_Cipher(3);Ingo Schwarze
jsing@ provided crucial help regarding the content; tweaks and OK tb@
2019-08-15Serialize access to the vnode pointers associated with acct(2) systemanton
accounting. Prevents a race where the acct thread and the acct(2) syscall both tries to close a vnode. ok visa@ Reported-by: syzbot+bf2ac4d4fa9ee92903b8@syzkaller.appspotmail.com
2019-08-15Revert previous. There were some users of the quirky behaviour that wereMartijn van Duren
missed during code scan.
2019-08-14Add test case for ber_scanf_elements.rob
Significant tweak by and ok martijn@
2019-08-14revert the inet6 format diff, regression observed by florian@Gilles Chehade
2019-08-14scsi_[add|remove]_link() are local functions so move theirKenneth R Westerback
declarations.
2019-08-14Whitespace nit. Add {} around body of SLIST_FOREACH().Kenneth R Westerback
2019-08-14Explain how to take over syspatch builds from another machine.Theo Buehler
ok ajacoutot robert
2019-08-14Clean up clean_old():Christian Weisgerber
* Remove syspatch files from the installed system and not the ramdisk. * Directly try to remove the old files without superfluous check. * Use an extended glob to match /usr/lib/gcc-lib contents that don't belong to this OS version. * For /usr/lib/clang, set an array to the expansion of the glob, which is an alphabetically sorted list, drop the last element, and rm the rest. ok tb@
2019-08-14Fix argument list for ber_set_writecallbackMartijn van Duren
OK claudio@
2019-08-14wonky comma;Jason McIntyre
2019-08-14Document that ber_scanf_elements' 'p' and 't' attribute don't eat theMartijn van Duren
current ber element. OK claudio@ Seems sensible to deraadt@
2019-08-14Make ber_scanf_elements's 'e' attribute eat the element.Martijn van Duren
Right now all consumers use 'e' at the end of the list, so no regressions should be introduced. OK claudio@ Seems sensible to deraadt@
2019-08-14make usage() and SYNOPSIS more alikeTheo de Raadt
discussed with martijn
2019-08-14document EVP_Digest(3)Ingo Schwarze
2019-08-14Tweak some comments.Kenneth R Westerback
2019-08-14Rework the way ribs are stored in the RDE. Instead of a flat array thatClaudio Jeker
gets enlarged use an array of pointers, so pointers to struct rib entries remain valid after adding new RIBs. Also remove the global ribs pointer and rib_valid() since they are no longer used since all the code uses now rib_byid() instead. OK benno@
2019-08-14some cleanup:Ingo Schwarze
* avoid repetitions and jumping back and forth between the functions * more precision regarding which ASN.1 types and fields are involved * mark up the ASN.1 type and field names * explain CMS_REUSE_DIGEST more precisely * move the discussion of attributes to CMS_NOATTR where it belongs * GOST does not need an ENGINE in LibreSSL, so don't use it as an example * add the missing STANDARDS section * and minor wording improvements
2019-08-14Default to previous search string for search-forward andNicholas Marriott
search-backward, from Leah Neukirchen.
2019-08-14Revert a change I did not mean to commit yet.Nicholas Marriott
2019-08-14Add -Z flag to rotate-window, select-pane, swap-pane, switch-client toNicholas Marriott
preserve zoomed state. GitHub issue 1839.
2019-08-14Fix NAT traversal detection bug when "local" option is not explicitlytobhe
set. ok patrick@