Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-05-03 | Make ndbm match POSIX. A datum consists of a void *dptr and a size_t dsize. | Todd C. Miller | |
Also make the open functions take a mode_t, not int. OK deraadt@ | |||
2004-05-03 | XPG specifies bsd_signal(3) so make it an alias for signal(3); OK deraadt@ | Todd C. Miller | |
2004-05-03 | Add _Exit(3) as per C99. Discussed with espie@ some time ago. | Todd C. Miller | |
2004-05-03 | typo spotted by grange | Ted Unangst | |
2004-05-03 | strtonum, a nicer version of strtoll, by millert and myself. | Ted Unangst | |
ok deraadt@ millert@ | |||
2004-05-03 | Do a better job of documenting strerror_r() and add an ERRORS section. | Todd C. Miller | |
2004-05-03 | build the error message in strerror_r.c directly, avoiding one copy there. | Marc Espie | |
handle a few subtle details caught by the regression tests: correct termination, non copying if buffer length == 0, errno setting. let all former users of __strerror go through strerror_r. Work by Todd Miller and I. Okay millert@. | |||
2004-05-03 | Rev 1.4 was bogus (committed from the wrong tree), this repairs it. | Todd C. Miller | |
2004-05-02 | some minor KNF | Todd C. Miller | |
2004-05-02 | Do not define NOTE_EOF in CFLAGS. ok millert@ | Miod Vallat | |
2004-05-02 | bump minor for new functions. Reminder from brad@ | Marco S Hyman | |
2004-05-01 | pthead_supsend_all_np and pthread_resume_all_np from freebsd via | Marco S Hyman | |
Kurt Miller <truk at optonline.net>. Kurt says: They're needed for the java hotspot compiler in the 1.3+ jdk OK brad@ | |||
2004-05-01 | let __strerror fill precisely the part of the buffer it can. | Marc Espie | |
okay millert@ | |||
2004-04-30 | Mention siginterrupt; OK deraadt@ | Todd C. Miller | |
2004-04-30 | Let __strerror work by fixing a number of problems. Work by tholo and I, | Marc Espie | |
okay millert@. - atoi was bogus. - atoi was not reentrant. - there's no reason to cast stuff to unsigned int. | |||
2004-04-29 | Sync with md5.c rev. 1.4 | Todd C. Miller | |
2004-04-29 | Changes inspired by Markus's rmd160 implementation: | Todd C. Miller | |
o Make MD5Update() more readable o Simplify padding in MD5Final() o Do copy + byte flip in MD5Transform() instead of in the caller The result is a faster md5 and the byte order foo is kept to a minimum. | |||
2004-04-29 | Undo some recent prototype changes; it is legal to pass the helper | Todd C. Miller | |
functions can take a NULL buf pointer. They will malloc memory as needed in this case. | |||
2004-04-29 | The data pointer passed to the transform function may not be properly | Todd C. Miller | |
aligned so copy it in a way that a) is endian indepenent and b) does not rely on alignment. Problem found and solution tested by hshoexer@ | |||
2004-04-29 | typo in SEE ALSO; | Jason McIntyre | |
2004-04-29 | more KNF | Todd C. Miller | |
2004-04-29 | Some KNF | Todd C. Miller | |
2004-04-28 | KNF: function names should be at column 0 for easier grepping. | Todd C. Miller | |
2004-04-28 | Pass sizeof(*pointer) not sizeof(point) to memset. Karsten Desler. | Todd C. Miller | |
2004-04-28 | Remove old md[45] | Todd C. Miller | |
2004-04-28 | Don't build lib/libc/md, build md[45] in lib/libc/hash instead. | Todd C. Miller | |
2004-04-28 | md[45] man page | Todd C. Miller | |
2004-04-28 | Xr sha2(3) | Todd C. Miller | |
2004-04-28 | PD md4 code derived from Colin Plumb's md5 routines. | Todd C. Miller | |
2004-04-28 | Rename members of struct MD5Context to match other hash routines. | Todd C. Miller | |
Add constants for buffer lengths and use them. Make bit count 64bit based on changes by niklas@ long ago. Conver htole32n() to macros and unroll loops. | |||
2004-04-28 | PD version of md5(3) based on code written by Colin Plumb. | Todd C. Miller | |
2004-04-28 | various tweaks; | Jason McIntyre | |
2004-04-28 | update to libevent 0.8; keep local changes | Brad Smith | |
ok markus@ | |||
2004-04-28 | typo from Jared Yanovich; | Jason McIntyre | |
ok deraadt@ | |||
2004-04-28 | Include db.h, not ndbm.h since this uses db routines and not ndbm. | Todd C. Miller | |
2004-04-28 | remove dup file kvm_amd64 should be used. | Marco S Hyman | |
OK deraadt@ | |||
2004-04-27 | fd passing works over a socketpair too of course so document this. | Todd C. Miller | |
Also test it in regress to be pedantic (though the kernel path is really the same). While there, remove cred-passing code that we don't support. OK deraadt@, | |||
2004-04-27 | A quad is two ints, not two longs. Also fix some problems with | Otto Moerbeek | |
conversions from floating point to quad. Problem reported by Marcus Holland-Moritz. From NetBSD. ok millert@ | |||
2004-04-27 | Make the bit count u_int64_t instead of two u_int32_t. Adapted from | Todd C. Miller | |
changes Niklas made to the md5 code long ago. OK hshoexer@ | |||
2004-04-27 | do not link ssltest.c into libssl, stops main/doit symbols from being | Anil Madhavapeddy | |
exported. no bump needed since nothing should use them, markus@ ok | |||
2004-04-26 | Use a common source file for all the hash helper functions that | Todd C. Miller | |
previously lived in foohl.c. The foohl.c files are now generated via sed, though perhaps cpp could be used in the future. Use u_int8_t instead of unsigned char for the buffers struct fooContext. Add constants for buffer lengths and use them in function prototypes and the man pages. This is basically cosmetic surgery; there should be no functional changes. OK deraadt@ | |||
2004-04-25 | add/subtract ULONG_MAX + 1 on over/underflows, fixes float -> quad | Daniel Hartmeier | |
conversion in libc, reported by Marcus Holland-Moritz, ok beck@ | |||
2004-04-25 | update missing pieces from 0.9.7d; ok henning | Markus Friedl | |
crank minor for API extensions | |||
2004-04-25 | avoid NULL deref; from danh@ | Markus Friedl | |
2004-04-25 | from openssl, 1.50.2.9, make S/MIME encrypt work again. | Markus Friedl | |
2004-04-21 | Rename kvm_mvme88k so that luna88k can build libkvm. | Miod Vallat | |
2004-04-21 | kill whitespace at eol; | Jason McIntyre | |
2004-04-20 | Adapt to new pw_copy() API, closes PR 3698. | Todd C. Miller | |
2004-04-20 | Change pw_copy(3) to take a 3rd arguement, the existing passwd entry. | Todd C. Miller | |
This allows an application to only update a password entry if it is in the state it expects. Additionally, if the old passwd struct is specified the new one may have a different pw_name field since matching is done on the original. Adapted from FreeBSD. | |||
2004-04-20 | kern.maxclusters. ok beck@ deraadt@ jmc@ | Ted Unangst | |