summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-05-22Make this build cleanly even with UTF8_{putc,getc} moved from thePhilip Guenther
public header to the internal. Make some variables unsigned to eliminate some warnings
2014-05-22No uses of UTF8_{getc,putc}() in ports, so remove them from the public header.Philip Guenther
ok miod@
2014-05-22Nuke some trailing whitespace to shrink subsequent diffs.Kenneth R Westerback
2014-05-22From FreeBSD: the second argument to UFS_UPDATE/ffs_update is just aPhilip Guenther
boolean, not a MNT_* flag. ok beck@
2014-05-21We only have one possible location to use for a logged in port, so only setJonathan Matthew
it in one place.
2014-05-21When the firmware tells us a loop id is already in use, add the deviceJonathan 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-21Nuke some trailing whitespace to shrink subsequent diffs.Kenneth R Westerback
2014-05-21stat(2) on the spool file needs privileges. Fixes file size reported byPascal Stumpf
lpq -l. ok millert@
2014-05-21Nuke some trailing whitespace to shrink subsequent diffs.Kenneth R Westerback
2014-05-21Nuke some trailing whitespace and break some long lines to shrinkKenneth R Westerback
subsequent diffs.
2014-05-21Nuke some trailing whitespace to shrink subsequent diffs.Kenneth R Westerback
2014-05-21Fix '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-21fix MALLOC_STATS (not compiled in by default); ok tedu@Otto Moerbeek
2014-05-21Fix IPsec route addition broken since the removal of the link-layerMartin 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-21regenMartin Pieuchot
2014-05-21Add VIA Labs.Martin Pieuchot
2014-05-21Handle the stall condition just like the bable one since in both casesMartin 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-21when failing because of unexpected output, show the offending outputDamien Miller
2014-05-21Use errc/warnc to simplify code.Philip Guenther
ok jca@ krw@
2014-05-21document which keywords are posix conformant;Jason McIntyre
ok guenther sobrado
2014-05-21Exit with non-zero status if a read is truncated, or if a compressionPhilip Guenther
program was used but it didn't exit successfully. Original diff by mpf@
2014-05-21Change use of Z_PARTIAL_FLUSH to Z_SYNC_FLUSH in the hibernate code as perMike Larkin
a warning/comment in zlib.h that Z_PARTIAL_FLUSH "will be removed, use Z_SYNC_FLUSH instead".
2014-05-21Typo in comment noticed during some recent hibernate debugging. No codeMike Larkin
change.
2014-05-21Fix invalid / missing format specifiers in several dnprintf statementsMike 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-21warn about implicit. misspelled function names in libc are deadly.Ted Unangst
2014-05-20destinct is spelled distinct.David Gwynne
ok henning@ jmc@
2014-05-20remove irrelevant, outdated, and misleading sentence suggesting thatAlexander Hall
you need to set up a local mirror for the install sets brought to attention by pascal@ ok krw@
2014-05-20Merge the fixes from the upstream. Factor out some common code inYASUOKA Masahiko
tty.c and fix EL_SETTY to work. ok nicm
2014-05-20As suggested by guenther@ and millert@, replace seek+[read|write] withKenneth 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-20format string cleanup: change "%i" to "%d" and fix a few typosEric Faurot
2014-05-20Unify the SSL privsep key loading functions.Reyk Floeter
ok eric@
2014-05-20KSSL is dead... nuke KSSL_DEBUG from orbit.Joel Sing
ok beck@ miod@
2014-05-20regenMartin Pieuchot
2014-05-20Add VIA VL80x xHCI.Martin Pieuchot
2014-05-20Format string fixes for XHCI_DEBUG.Martin Pieuchot
2014-05-20Deep down inside OpenSSL, err... LibreSSL, RSA_set_ex_data attempts toReyk 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-20Add -o max_read=XXX support in fuse. This is needed by usmb to have aSylvestre Gallon
working read() and write(). ok tedu@
2014-05-20Add support for -o XXX or -oXXX options in libfuse.Sylvestre Gallon
inputs from tedu@, ok tedu@
2014-05-20The argv[] used for el_set() EL_BIND, EL_SETTY, etc should be terminatedNicholas 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-20Assign the queue ID to the correct packet header when sending ICMP messages.Martin Pieuchot
ok henning@
2014-05-20Fix eui64 address generation, broken since the removal of the link-layerMartin Pieuchot
address from the per-ifp list. Found the hard way by weerd@, florian@ and stsp@, ok florian@
2014-05-20correctly match size and buffer. from enh at googleMartin Pieuchot
2014-05-20remove dead filesEric Faurot
2014-05-20yet more code that no longer makes any senseMarc Espie
2014-05-20makewhatis 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-20fix bogus extension: $code and $code2 belong in _system, so thatMarc Espie
both system and verbose_system will work properly.
2014-05-20Use 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-20Bring UTF8_{getc,putc} up-to-date: it's been a decade since 5- and 6-bytePhilip 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-06import of OpenSSL 0.9.8kDamien Miller
2014-05-19Format string fixes and removal of -Wno-format for sgi. Based upon anMiod Vallat
initial diff from jasper@