summaryrefslogtreecommitdiff
path: root/src (unfollow)
Commit message (Expand)AuthorFilesLines
2008-09-01do not overflow for large prefix len (e.g. 2147483649)markus1-3/+3
2008-08-25Make all combinations of G, P, J and zero-fill work with as littleotto1-5/+20
2008-08-23unbreak MALLOC_OPTIONS=G that I broke in my last commit;djm1-3/+3
2008-08-23fix calloc() for MALLOC_OPTIONS=J case: SOME_JUNK was being filled intodjm1-2/+2
2008-08-23unbreak wcschr(string, L'\0') which was incorrectly returning NULLdjm1-3/+5
2008-08-22make sure we always map and unmap multiples of MALLOC_PAGESIZE;otto1-5/+14
2008-08-22Smarter implementation of calloc(3), which uses the fact that mmap(2)otto2-8/+57
2008-08-15Add resolv.conf(5) option to force lookups by TCP: "options tcp"djm1-18/+20
2008-08-07small cleanup of error/warning stringsotto2-7/+7
2008-07-28Install man pages for the BIO_* libcrypto functions, but not bio.3jsg1-1/+126
2008-07-28man page bits for new malloc; ok jmc@otto1-43/+33
2008-07-28Almost complete rewrite of malloc, to have a more efficient dataotto1-1443/+835
2008-07-25i have to crank this for a ridiculous reason, to save me about 4 hours of workderaadt1-1/+1
2008-06-26First pass at removing clauses 3 and 4 from NetBSD licenses.ray4-33/+5
2008-06-14remove _thread_malloc_init prototypeotto1-2/+1
2008-06-13grammar fixes;jmc1-3/+3
2008-06-13remove _MALLOC_LOCK_INIT; major bump; ok deraadt@otto2-8/+2
2008-06-13Add strtof() to libc, some ports seem to like it. Currently it's a simplelandry3-9/+64
2008-06-09fix an Xr, and use a more appropriate macro;jmc1-4/+4
2008-06-08arc4random_stir() does not use /dev/arandom anymore, but sysctl kern.arandomderaadt1-4/+6
2008-06-04fix math screwup that reintroduced a bias for upper_bounds in rangedjm1-2/+2
2008-05-30-salt is default for "openssl enc"; from djmjmc1-29/+19
2008-05-20kill an Xr to a non-existent man page, ulimit(1);jmc1-5/+3
2008-05-19remove recalloc(3); it is buggy and impossible to repair without bigotto3-62/+20
2008-05-11garbage collect the portability bits for the removed select() support.brad1-11/+1
2008-05-09try SO_BINDANY for -s, but do not insist; ok bob, reykmarkus1-2/+4
2008-05-07remove duplicates; remove des_random_key; remove unused; sort MLINKS; ok jmc@markus1-113/+8
2008-05-06- put the description of -O in the right placejmc1-6/+6
2008-05-06allow setting of TCP send/receive buffer sizes; ok markus@djm2-5/+38
2008-04-18convert select() => poll(), saves a runtime malloc+free per retrydjm1-23/+16
2008-04-16permit _ in the middle of a DNS name componentderaadt1-2/+3
2008-04-13Improve the libc DNS resolver ID generation algorithm to be moredjm1-43/+79
2008-04-13Use arc4random_buf() when requesting more than a single word of outputdjm2-4/+4
2008-04-04- do not call pthread_atfork(3) handlers when a multithreaded programkurt1-2/+7
2008-04-02Zero state buffers on return. OK deraadt@millert1-1/+5
2008-03-19bcmp(3) tries to return length, which is a size_t, as an int.ray1-4/+4
2008-03-16- add NAME entries for arc4random_buf and arc4random_uniformjmc1-2/+4
2008-03-16Add missing MLINKSderaadt1-1/+2
2008-03-16diff from djm@ committed at his request:otto2-3/+84
2008-03-15- len is size_t, but n uses len and is an int. Matching those typesray1-6/+12
2008-03-15Convert c to unsigned char, like it says in the manual. Also addray1-4/+3
2008-02-26fix memory leak (in one case of unaligned buffers); from Markus Kvetterderaadt2-4/+6
2008-02-20use pgfree pool like other code does to reserve free list slots.otto1-6/+6
2008-01-01- make arc4random*() functions thread safe. Use a custom spinlock functionkurt2-42/+69
2007-12-01relevant updates/fixes up to openssl-0.9.8g;jmc1-31/+45
2007-11-27typos; ok jmc@martynas1-2/+2
2007-11-19fix misleading comment; the _MUTEX_LOCK/_MUTEX_UNLOCK macros work withkurt1-2/+2
2007-11-13Put limits.h in front of stdlib.h as style(9) recommends.tobias2-8/+8
2007-11-11strtod may return HUGE_VAL on overflow, which is defined in math.h.tobias1-2/+3
2007-10-31Add parentheses to avoid warning:chl1-2/+2