Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-05-22 | Make this build cleanly even with UTF8_{putc,getc} moved from the | Philip Guenther | |
public header to the internal. Make some variables unsigned to eliminate some warnings | |||
2014-05-22 | No uses of UTF8_{getc,putc}() in ports, so remove them from the public header. | Philip Guenther | |
ok miod@ | |||
2014-05-22 | Nuke some trailing whitespace to shrink subsequent diffs. | Kenneth R Westerback | |
2014-05-22 | From FreeBSD: the second argument to UFS_UPDATE/ffs_update is just a | Philip Guenther | |
boolean, not a MNT_* flag. ok beck@ | |||
2014-05-21 | We only have one possible location to use for a logged in port, so only set | Jonathan Matthew | |
it in one place. | |||
2014-05-21 | When the firmware tells us a loop id is already in use, add the device | Jonathan Matthew | |
there to our port lists, then find the next available loop id and carry on rather than restarting. This way, we're less likely to get stuck looping when the firmware behaves inconsistently. We also don't need to treat domain controller logins specially. | |||
2014-05-21 | Nuke some trailing whitespace to shrink subsequent diffs. | Kenneth R Westerback | |
2014-05-21 | stat(2) on the spool file needs privileges. Fixes file size reported by | Pascal Stumpf | |
lpq -l. ok millert@ | |||
2014-05-21 | Nuke some trailing whitespace to shrink subsequent diffs. | Kenneth R Westerback | |
2014-05-21 | Nuke some trailing whitespace and break some long lines to shrink | Kenneth R Westerback | |
subsequent diffs. | |||
2014-05-21 | Nuke some trailing whitespace to shrink subsequent diffs. | Kenneth R Westerback | |
2014-05-21 | Fix 'fdisk -u', a.k.a. MBR_pcopy(), on sparc64 and possibly others. | Kenneth R Westerback | |
gcc's built-in/in-lined memcpy() can't copy elements of a struct dos_partiton array from inside the __packed struct dos_mbr into an 'unpacked' local variable. But copying the whole array works fine. Be consistant and use the same idiom in both places the partition table is parsed. Leave the landisk workaround/hack in place until it can be confirmed it is no longer needed. ok martynas@ after many alternatives crashed and burned. | |||
2014-05-21 | fix MALLOC_STATS (not compiled in by default); ok tedu@ | Otto Moerbeek | |
2014-05-21 | Fix IPsec route addition broken since the removal of the link-layer | Martin Pieuchot | |
addresses from the per-ifp list. While here document why enc(4) needs a link-layer address, or at least something that seems to be one. Found the hard way and fix tested by naddy@, ok mikeb@, henning@ | |||
2014-05-21 | regen | Martin Pieuchot | |
2014-05-21 | Add VIA Labs. | Martin Pieuchot | |
2014-05-21 | Handle the stall condition just like the bable one since in both cases | Martin Pieuchot | |
the ring is halted. Do not bother reporting USBD_STALLED to the stack like other HC drivers do since the endpoint is automatically reseted. What is the point of this error apart from making sure driver authors will forget to call usbd_clear_endpoint_stall_async() correctly? The Renesas uPD720202 xHCI, provided by Stefan Wollny, now works as expected. | |||
2014-05-21 | when failing because of unexpected output, show the offending output | Damien Miller | |
2014-05-21 | Use errc/warnc to simplify code. | Philip Guenther | |
ok jca@ krw@ | |||
2014-05-21 | document which keywords are posix conformant; | Jason McIntyre | |
ok guenther sobrado | |||
2014-05-21 | Exit with non-zero status if a read is truncated, or if a compression | Philip Guenther | |
program was used but it didn't exit successfully. Original diff by mpf@ | |||
2014-05-21 | Change use of Z_PARTIAL_FLUSH to Z_SYNC_FLUSH in the hibernate code as per | Mike Larkin | |
a warning/comment in zlib.h that Z_PARTIAL_FLUSH "will be removed, use Z_SYNC_FLUSH instead". | |||
2014-05-21 | Typo in comment noticed during some recent hibernate debugging. No code | Mike Larkin | |
change. | |||
2014-05-21 | Fix invalid / missing format specifiers in several dnprintf statements | Mike Larkin | |
(used only when ACPI_DEBUG is enabled) From a diff on tech@ by Fabian Raetz, with a minor change by me, tested on i386 and amd64 with ACPI_DEBUG enabled and disabled. | |||
2014-05-21 | warn about implicit. misspelled function names in libc are deadly. | Ted Unangst | |
2014-05-20 | destinct is spelled distinct. | David Gwynne | |
ok henning@ jmc@ | |||
2014-05-20 | remove irrelevant, outdated, and misleading sentence suggesting that | Alexander Hall | |
you need to set up a local mirror for the install sets brought to attention by pascal@ ok krw@ | |||
2014-05-20 | Merge the fixes from the upstream. Factor out some common code in | YASUOKA Masahiko | |
tty.c and fix EL_SETTY to work. ok nicm | |||
2014-05-20 | As suggested by guenther@ and millert@, replace seek+[read|write] with | Kenneth R Westerback | |
p[read|write]. Makes the code much clearer by eliminating extra error checking and verbiage. No intentional functional change. Tweaks by and ok guenther@ | |||
2014-05-20 | format string cleanup: change "%i" to "%d" and fix a few typos | Eric Faurot | |
2014-05-20 | Unify the SSL privsep key loading functions. | Reyk Floeter | |
ok eric@ | |||
2014-05-20 | KSSL is dead... nuke KSSL_DEBUG from orbit. | Joel Sing | |
ok beck@ miod@ | |||
2014-05-20 | regen | Martin Pieuchot | |
2014-05-20 | Add VIA VL80x xHCI. | Martin Pieuchot | |
2014-05-20 | Format string fixes for XHCI_DEBUG. | Martin Pieuchot | |
2014-05-20 | Deep down inside OpenSSL, err... LibreSSL, RSA_set_ex_data attempts to | Reyk Floeter | |
free() the external data when releasing the RSA object. The RSA_GET_EX_NEW_INDEX(3) manual page doesn't mention that this is the default behaviour - it just describes the possible free_func() callback - and the code path in libcrypto is hiding the fact behind layers of abstraction. Fix possible double free by allocating and copying the external data reference that is used for RSA privsep (pkiname in smtpd's case). ok eric@ gilles@ | |||
2014-05-20 | Add -o max_read=XXX support in fuse. This is needed by usmb to have a | Sylvestre Gallon | |
working read() and write(). ok tedu@ | |||
2014-05-20 | Add support for -o XXX or -oXXX options in libfuse. | Sylvestre Gallon | |
inputs from tedu@, ok tedu@ | |||
2014-05-20 | The argv[] used for el_set() EL_BIND, EL_SETTY, etc should be terminated | Nicholas Marriott | |
by NULL. Fix from NetBSD via yasuoka@ but changed by me not to walk off the end of array with >20 arguments. ok yasuoka | |||
2014-05-20 | Assign the queue ID to the correct packet header when sending ICMP messages. | Martin Pieuchot | |
ok henning@ | |||
2014-05-20 | Fix eui64 address generation, broken since the removal of the link-layer | Martin Pieuchot | |
address from the per-ifp list. Found the hard way by weerd@, florian@ and stsp@, ok florian@ | |||
2014-05-20 | correctly match size and buffer. from enh at google | Martin Pieuchot | |
2014-05-20 | remove dead files | Eric Faurot | |
2014-05-20 | yet more code that no longer makes any sense | Marc Espie | |
2014-05-20 | makewhatis being now external, it no longer requires picky/test/check_dir. | Marc Espie | |
It also can't handle too many manpages at once (shell limit) so hand-feed it (problem spotted by landry@). Some tests by schwarze@. | |||
2014-05-20 | fix bogus extension: $code and $code2 belong in _system, so that | Marc Espie | |
both system and verbose_system will work properly. | |||
2014-05-20 | Use errc/warnc to simplify code. | Philip Guenther | |
Also, in 'ftp', always put the error message last, after the hostname/ipaddr. ok jsing@ krw@ millert@ | |||
2014-05-20 | Bring UTF8_{getc,putc} up-to-date: it's been a decade since 5- and 6-byte | Philip Guenther | |
encodings and encoding of surrogate pair code points were banned. Add checks for those, both to those functions and to the code decoding the BMP and UNIV encodings. ok miod@ | |||
2009-04-06 | import of OpenSSL 0.9.8k | Damien Miller | |
2014-05-19 | Format string fixes and removal of -Wno-format for sgi. Based upon an | Miod Vallat | |
initial diff from jasper@ |