summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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@
2014-05-19X509_free() the certificate if the server hostname check fails.Jeremie Courreges-Anglas
No functional change. Reported by Mike Small and Maxime Villard.
2014-05-19Fix several bounds checks in ssl_add_clienthello_tlsext() andMiod Vallat
ssl_add_serverhello_tlsext(), and convert all of them to the same idiom, for easier review. Math is hard, let's go webshopping. Help and ok guenther@
2014-05-19Explicitely initialize two static variables introduced in the previousJeremie Courreges-Anglas
commit, to please lteo@
2014-05-19HTTPS connections may see redirects, so initialize libcrypto and libsslJeremie Courreges-Anglas
only once, and reuse the crafted SSL_CTX for further connections. ok lteo@
2014-05-19Plug a small memory leak: if we pass checkin_init/checkin_updateJeremie Courreges-Anglas
a revision thru pb.newrev, it will not be freed. From Fritjof Bornebusch, no objections from tech@
2014-05-19no more -K;Jason McIntyre
2014-05-19kerberos leftoversTed Unangst
2014-05-19consistent use of uint32_t for poison valuesTed Unangst
2014-05-19Add some consistency in fuse error handling. We need to return ENXIOSylvestre Gallon
when the fuse communication channel is broken and ENOSYS when the libfuse callback does not exist. Reported by Helg Bredow, thanks! ok tedu@
2014-05-19as reported by Helg, should use realpath for mounts. ok guenther sylTed Unangst
2014-05-19There is no need to remember which usb(4) device is the child of an USBMartin Pieuchot
host controller because autoconf(9) already does it. Breakage reported by todd@
2014-05-19syncTodd T. Fries
2014-05-19More KNF.Joel Sing
2014-05-19More whack-a-mole^Wfips.Joel Sing
ok miod@
2014-05-19It is perfectly valid to call free(NULL), so stop checking for non-NULLJoel Sing
before calling free - of some course parts of the code already did this.
2014-05-19Nuke some trailing whitespace that snuck in.Kenneth R Westerback
2014-05-19No point in trying to update the -L file on loss of link if no -L hasKenneth R Westerback
been specified. Eliminates spurious "Couldn't write ''" log messages. Spotted while looking into Roman Gorelov's logs on another problem.
2014-05-19Add a H_SAVE_FP operation to history() which lets the history be savedNicholas Marriott
to an open file pointer. From NetBSD via Eitan Adler. ok millert
2014-05-19fix format mistakes visible if AUDIO_DEBUG is definedAlexandre Ratchov
2014-05-19unbreak the build when DIAGNOSTIC is not definedJonathan Gray
allows ramdisk kernels to build again
2014-05-19Update run(4) firmware to version 0.33, with permission from Dennis LeeStefan Sperling
of Mediatek to keep using the free firmware licence we've been using. Tested by myself, rapha@, Fred Crowson, Dinar Talypov, gerhard@, matthieu@.
2014-05-19Enable the 3- and 4-byte sequence tests for UTF8_getc()Philip Guenther
Add surrogate and out-of-range tests for UTF8_putc() on the assumption we'll make it return -2. Maybe.
2014-05-18Add regression test for UTF8_{getc,putc}()Philip Guenther