summaryrefslogtreecommitdiffstats
path: root/lib (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Don't leak the fd returned by mkstemp in vi_histedit error paths.nicm2010-10-231-2/+7
| | | | From zinovik.
* add forgotten ``static''ratchov2010-10-231-2/+2
|
* use MODE_xxx and XRUN_xxx macros everywhere, and zap correspondingratchov2010-10-212-12/+4
| | | | AMSG_xxx macros, which in turns simplifies the code
* print the pointer value that caused the error (if available); okotto2010-10-211-47/+54
| | | | deraadt@ nicm@ (on an earlier version)
* Fix a potential memory leak in an error path (although in code we don'tnicm2010-10-181-3/+7
| | | | currently use), spotted by zinovik.
* Disable use of dladdr() on a.out arches, they do not provide it (yet); ok djm@miod2010-10-182-2/+2
|
* The ssizearg member of union arg is pointless if it isn't of type ssize_tguenther2010-10-171-2/+2
| | | | Noted by Claus Assmann
* remove libsectok; it hasn't been updated in years and doesn't workdjm2010-10-1719-3971/+0
| | | | with the current generation of tokens; ok markus@ deraadt@
* unlink libsectok from the build; ok markus@ deraadt@djm2010-10-171-2/+2
|
* update struct statfs; from Vladimir Kirillovjmc2010-10-161-20/+30
|
* tcp.sendspace & tcp.recvspace buttons are gone.claudio2010-10-111-12/+2
|
* Fix typo in pflog header size computation. Fixes filtering with the newcanacar2010-10-091-2/+2
| | | | pflog headers. reported by jmc@, tested by jmc@ and sthen@, ok sthen@
* Extend GLOB_LIMIT to cover readdir and stat and bump the malloc limitnicm2010-10-082-31/+72
| | | | | | | | | | | from ARG_MAX to 64K. Fixes glob-using programs (notably ftp) able to be triggered to hit resource limits. Idea from a similar NetBSD change, original problem reported by jasper@. ok millert tedu jasper
* OpenSSL grows another undocumented header, apparently needed on armishdjm2010-10-071-1/+2
|
* More OpenSSL fixes:djm2010-10-067-26/+30
| | | | | | | | | - Update local engines for the EVP API change (len u_int => size_t) - Use hw_cryptodev.c instead of eng_cryptodev.c - Make x86_64-xlate.pl always write to the output file and not stdout, fixing "make -j" builds (spotted by naddy@) ok naddy@
* Retire Skipjackmikeb2010-10-065-7/+3
| | | | | | | | | | | There's not much use for the declassified cipher from the 80's with a questionable license these days. According to the FIPS drafts, Skipjack reaches its EOL in December 2010. The libc portion will be removed after the ports hackathon. djm and thib agree, no objections from deraadt Thanks to jsg for digging up FIPS drafts.
* Our make already uses sh -e when executing commands.naddy2010-10-041-7/+7
| | | | Revert the "set -e" additions and kill unneeded subshells. ok djm@
* DES_LONG should be u_int on all platforms, it was spuriouslydjm2010-10-031-1/+1
| | | | u_long on i386. suggested by deraadt@ and kettenis@
* percolate up errors from perl asm scripts, correctly enable SHA-256 asm ondjm2010-10-021-9/+9
| | | | amd64
* fix -Wall due to API changedjm2010-10-012-6/+6
|
* update supporting files, crank library majorsdjm2010-10-0118-274/+621
|
* add missing; yay for cvs!djm2010-10-015-0/+607
|
* resolve conflicts, fix local changesdjm2010-10-011617-188750/+69951
|
* import OpenSSL-1.0.0adjm2010-10-01685-13148/+89449
|
* Provide a WEAK_ALIAS macro in <machine/asm.h> for the few platformsguenther2010-10-015-14/+12
| | | | | | | that didn't already have one, and then immediately use it in libc's SYS.h ok miod@
* Update to tzcode2010m from elsie.nci.nih.govmillert2010-09-271-1/+47
|
* oops, don't free array before freeing members; spotted by dkrause@djm2010-09-261-2/+2
|
* add mips64 tags; ok miodjmc2010-09-262-6/+6
|
* Make gcvt() better match printf("%g") behavior, it now passes regress.millert2010-09-251-11/+23
| | | | OK deraadt@
* document GLOB_KEEPSTAT in the RETURN VALUES and STANDARDS sections.djm2010-09-251-3/+14
|
* fix Xrs;jmc2010-09-251-14/+9
|
* tweak previous;jmc2010-09-241-10/+10
|
* Bump libc major for ABI changes.millert2010-09-241-1/+1
|
* Bump fts_level from short to int and add a spare short so thingsmillert2010-09-242-5/+5
| | | | line up nicely. OK deraadt@
* Provide IRIX-compatible get_fpc_csr() and set_fpc_csr() for mips, althoughmiod2010-09-244-4/+117
| | | | | | | | we don't provide the silly union to decompose the value. This will allow userland to flip the ``flush denormalized to zero'' setting, which apparently is being relied upon by tcl. Asked by jasper@ a long time ago. Riding upon the upcoming libc major crank.
* Add timingsafe_bcmp(3) to libc, mention that it's already in thematthew2010-09-244-7/+64
| | | | | | kernel in kern(9), and remove it from OpenSSH. ok deraadt@, djm@
* add a GLOB_KEEPSTAT option that retains a copy of the struct statdjm2010-09-242-16/+77
| | | | | | | | | | | information that is looked up while matching glob(3)s Keeping this information around can make a big difference when fetching it is expensive, e.g. in sftp which uses GLOB_ALTDIRFUNC feedback millert@ jmc@ "get it in before the libc crank" deraadt@
* Implement if_freenameindex() as a real function as required by posix.claudio2010-09-241-1/+7
| | | | OK deraadt@, millert@
* according to ingo, it isn;t a problem to have empty [BDS]q macros, sojmc2010-09-203-10/+10
| | | | revert that part of yesterday's diffs;
* more wacky macro fixing;jmc2010-09-195-52/+52
|
* don't try to get the current stream postion when the device is stopped,ratchov2010-09-171-9/+9
| | | | | and don't generate clock ticks (ie don't invoke the sio_onmove(3) call-back).
* Since the stack layout changes from gcc3 to gcc4, change the inline asm tokettenis2010-09-121-1/+5
| | | | | | deal with this. ok miod@
* there's a missing full stop here too, which seems to be because ofjmc2010-09-111-3/+3
| | | | another local variation;
* remove a duplicate line; thomas dickey has confirmed this issue is notjmc2010-09-111-3/+2
| | | | present in upstream sources, so it must be a local bug;
* observe the following spelling:jmc2010-09-1016-69/+69
| | | | | | | | | - wide character (noun) - wide-character (adjective) this is the "fix of least resistance", and appears to be in line with posix style; a tiny fix still needed for curses, but i'll mail that upstream;
* Use mandoc instead of groff to build PostScript manuals; note thatschwarze2010-09-091-3/+3
| | | | | | these are not built by default, but only built when MANPS is set. kristaps@ and jmc@ agree with the idea, and the patch doesn't bother deraadt@ at all
* Make tcpdump of pflog interfaces work with 'net <net>' expression.krw2010-09-081-3/+3
| | | | | | My problem, canacar@'s fix. ok sthen@ canacar@
* Document EBUSY return when attempting to open a cua device thatmillert2010-09-071-1/+4
| | | | someone else already has open. OK jmc@
* do not use .B, which is man(7), not mdoc(7); and stop .Tn abuseschwarze2010-09-074-357/+142
| | | | feedback and ok jmc@, ok millert@
* - O_NOFOLLOW is no longer non-posix; from thomas klausnerjmc2010-09-071-8/+5
| | | | | | - bump posix revision and remove xpg; from millert ok millert