summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-05-28The synopsis rendered very poorly because of a "Quite Ugly butTheo Buehler
syntactically correct" roff mess. Follow the mdoc style guide on function pointers to improve this a little. Neglect and remove a comment that advises against trying to fix this. guidance and ok schwarze@
2016-05-28Mention 3165 device support in iwm(4) man page.Stefan Sperling
Patch by Imre Vadasz.
2016-05-28Test if stdin is a terminal before resetting the tty state.Martijn van Duren
Diff supplied by Kai Antweiler. OK semarie@ and deraadt@
2016-05-28Add support for Intel Wireless 3165 devices to iwm(4).Stefan Sperling
Patch by Imre Vadasz.
2016-05-28Another misplaced pledge disklabel that needs to be removed because ofTheo Buehler
a DIOCGPDINFO that could be applied to a non-disk and thus cause a crash. After that ioctl, the program continues with pledge "stdio". ok beck semarie
2016-05-28Fix a pledge abort that can be triggered by using DIOCGDINFO on a fileTheo Buehler
that is not a disk device (e.g. fsirand -p /altroot) by removing the first of the two pledges. The program then runs with pledge "stdio" right after the ioctl. ok deraadt
2016-05-28host readlabel() above the pledge so we can avoid pledge violationsBob Beck
when the provided device is not a disk ok tb@
2016-05-28repair braces. from ilya.kaliman/gsoares/natanoTed Unangst
2016-05-28fix crash if filename not providedBob Beck
2016-05-28crank version numbers of those bootloaders that have been changed byStuart Henderson
the com_init fix. ok beck deraadt
2016-05-28rcmd(3) and rcmdsh(3) use getaddrinfo(3) not gethostbyname(3).Todd C. Miller
2016-05-28Hoist the opendev() call before the pledge because it can ioctl() whenBob Beck
the provided path is bogus or not a device. ok deraadt
2016-05-28Use getaddrinfo() instead of the non-standard gethostbyname2().Todd C. Miller
OK deraadt@ jca@ jung@ florian@
2016-05-28Simplify search form: minus two visible control elements, minusIngo Schwarze
one table, minus twenty lines of code, no loss of functionality. No idea why i didn't do this earlier...
2016-05-28Backout pf.c r1.972, pf_norm.c r1.184, ok claudioStuart Henderson
pf_test calls pf_refragment6 with dst=NULL, which is passed down to rtable_match which attempts to dereference it.
2016-05-28Assume sabrelite/nitrogen has a bootefi enabled u-boot in flash and justJonathan Gray
install dtbs and efiboot on the fat fs.
2016-05-28use efiboot in armv7 miniroot imagesJonathan Gray
2016-05-28In iwm(4), don't parse nvram antenna data for 7k devices, they don't have it.Stefan Sperling
And don't complain if no data is provided in nvram, needed for 3165 devices. Patch by Imre Vadasz.
2016-05-28iwm(4) man page updates (new firmware version 16, 8260 device support)Stefan Sperling
2016-05-28Add support for Intel Wireless 8260 devices to iwm(4).Stefan Sperling
Firmware has been available in fw_update(1) for some time (thanks sthen!). Tested by robert, reyk, Imre Vadasz, Bryan Vyhmeister. Thank you, Emmanuel Grumbach, for helping me diagnose issues during development. ok kettenis
2016-05-28Fix file block size rounding and ensure it's large enough to store aAlexandre Ratchov
full audio block.
2016-05-28Replace the /dev/bpf* open loop with a plain open("/dev/bpf0", ...).Martin Natano
ok deraadt jca
2016-05-28Do the endpoint verification before opening the pipe on the selectedMarcus Glocker
alternate interface endpoint instead statically on interface 0. Fix duplicate DPRINTF output while there. Initial diff from Patrick Keshishian, thanks!
2016-05-28add sizes to free() calls for descrip tablesTed Unangst
2016-05-28no need to open key disk for writing, from bytevolcano. ok jungTed Unangst
2016-05-27Padding cell is always the same so use a static.Nicholas Marriott
2016-05-27Break the save-last-cell code into a separate function (so it can beNicholas Marriott
called conditionally later).
2016-05-27Most of the utf8_data is fixed so simplify utf8_set to use a memcpy.Nicholas Marriott
2016-05-27whitespaces grow bsd.rd, you knowTheo de Raadt
2016-05-27tweak wording to avoid "firmware which are installed"T.J. Townsend
2016-05-27During install, set new 'wxallowed' mount option for the filesystemRobert Peichaer
/usr/local resides on. idea from and ok deraadt with feedback from halex
2016-05-27W^X violations are no longer permitted by default. A kernel log messageTheo de Raadt
is generated, and mprotect/mmap return ENOTSUP. If the sysctl(8) flag kern.wxabort is set then a SIGABRT occurs instead, for gdb use or coredump creation. W^X violating programs can be permitted on a ffs/nfs filesystem-basis, using the "wxallowed" mount option. One day far in the future upstream software developers will understand that W^X violations are a tremendously risky practice and that style of programming will be banished outright. Until then, we recommend most users need to use the wxallowed option on their /usr/local filesystem. At least your other filesystems don't permit such programs. ok jca kettenis mlarkin natano
2016-05-27Use getprogname() instead of __progname to make portability easier.Nicholas Marriott
2016-05-27No need to show the messages if we skip in case of /usr/lib on nfs.Robert Peichaer
OK deraadt
2016-05-27Add function comments.Robert Peichaer
OK sthen, deraadt
2016-05-27rename(2) operation requires "rpath cpath" at the underlying operationTheo de Raadt
(the src path lookup is considered a rpath operation) noticed by kristaps, discussed with semarie
2016-05-27Remove the non ELF macrosTheo de Raadt
ok millert
2016-05-27When resampling, use the exact resampling factor instead of the ratioAlexandre Ratchov
between input and output block sizes. This was inherited from sndiod, but is not required for files because they are continuous streams of samples and do not need to be split in blocks of equal duration. This change makes playback/recording rate match exactly the requested sample rate.
2016-05-27Flush rec buffer if there's less than one block space left and refillAlexandre Ratchov
play buffer if there's less than one block of data left. This is the correct condition in the general case. No behaviour change, as all input/output is multiple of the block size.
2016-05-27Simplify slot_fill() and slot_flush(). No behaviour changeAlexandre Ratchov
2016-05-27Make resamp_do() get the exact number input and output samples andAlexandre Ratchov
provide routines to calculate them. This way we don't rely on it to calculate the bytes procuded/consumed anymore. No behaviour change.
2016-05-27Per the libtls man page, tls_init() must be called prior to any otherJoel Sing
tls_* function; so actually do that.
2016-05-27Rename some of the internal error setting functions to more closely followJoel Sing
existing naming standards. Also provide functions for setting a struct tls_error * directly (rather than having to have a struct tls * or a struct tls_config *).
2016-05-27Avoid leaking ca_mem when freeing a tls_config.Joel Sing
2016-05-27Fix function parameters that do not have an underscore prefix.Joel Sing
2016-05-27typo fixes; Anthony CoulterStuart Henderson
2016-05-27Return "400 Bad Request" instead of "500 Server Internal Error" forKenneth R Westerback
requests lacking "HTTP/<version>". This makes it more obvious that httpd(8) does not attempt to support HTTP v0.9 (circa 1991), when "GET <url>\r\n" was valid. ok millert@ florian@
2016-05-27Revert CHAR_T removal. Some signedness flaws were introduced.Martijn van Duren
Found the hard way by jca@
2016-05-27syncStuart Henderson
2016-05-27Modify com_init to match the com driver initializaiton, and addBob Beck
a short delay so that baud rate changes on the console have a chance of working. Lots of help from theo on this one. Makes my serial console on my APU work for an unattended reboot instead of hanging when garbage is echoed to the tty. ok deraadt@