| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | remove cast of malloc(), since stdlib.h is included |  deraadt | 2015-08-20 | 1 | -2/+2 |
* | Handle malloc(0) returning NULL (which can happen on some other |  nicm | 2015-07-19 | 1 | -2/+4 |
* | typo in manual page. |  sobrado | 2015-07-15 | 1 | -3/+3 |
* | Use memset instead of bzero for better portability. |  nicm | 2015-07-12 | 2 | -10/+10 |
* | typo in embedded code block; from Ben Cornett |  deraadt | 2015-07-11 | 1 | -3/+3 |
* | bzero cmsgbuf before using it, silences valgrind warnings. |  brynet | 2015-07-03 | 2 | -2/+4 |
* | The correct semantic is to check msgbuf_write() for <= 0, not just < 0. |  reyk | 2015-06-11 | 2 | -9/+9 |
* | Do not assume that asprintf() clears the pointer on failure, which |  millert | 2015-06-03 | 1 | -3/+2 |
* | Use strtonum() instead of strtoul() when parsing uid/gid so we get |  millert | 2015-04-24 | 1 | -49/+52 |
* | tzfile.h is an internal header that should never have been installed. |  millert | 2015-03-15 | 1 | -4/+5 |
* | Include stdint.h, not limits.h to get SIZE_MAX. OK guenther@ |  millert | 2015-02-05 | 1 | -2/+2 |
* | Move to the <limits.h> universe. |  deraadt | 2015-01-16 | 1 | -3/+4 |
* | remove .Tn; from Jan Stary <hans at stare dot cz> |  schwarze | 2015-01-15 | 3 | -18/+10 |
* | rename blocks to words. bcrypt "blocks" are unrelated to blowfish blocks, |  tedu | 2015-01-12 | 1 | -6/+6 |
* | declare a local version of MIN(), call it MINIMUM() |  deraadt | 2015-01-08 | 1 | -2/+4 |
* | declare a local version of MIN(), call it MINIMUM() |  deraadt | 2015-01-08 | 1 | -2/+4 |
* | Do not need sys/param.h |  deraadt | 2015-01-07 | 2 | -4/+3 |
* | typo in comment: ouput => output |  djm | 2014-12-30 | 1 | -2/+2 |
* | return ERANGE instead of ENOMEM, so callers can differentiate real oom |  benno | 2014-12-25 | 1 | -2/+2 |
* | use the actual function name in .Dt and NAME .Nm, not an alias; |  schwarze | 2014-12-04 | 1 | -4/+4 |
* | no first person in man pages. |  tedu | 2014-11-25 | 1 | -3/+3 |
* | Explain why we deviate slightly from the PBKDF2 standard. |  doug | 2014-09-27 | 1 | -3/+5 |
* | obvious cases of missing .An; |  schwarze | 2014-09-08 | 2 | -8/+13 |
* | Delete secret or secret-derived data with explicit_bzero. |  doug | 2014-08-25 | 1 | -2/+2 |
* | Use O_CLOEXEC wherever we open a file and then call fcntl(F_SETFD, FD_CLOEXEC) |  guenther | 2014-08-15 | 1 | -10/+3 |
* | include stdint.h for standard ints. from Jean-Philippe Ouellet |  tedu | 2014-07-13 | 1 | -1/+2 |
* | sys/types.h rather than sys/param.h, where applicable. avoid overreach. |  deraadt | 2014-06-30 | 7 | -14/+13 |
* | sort includes much more sensibly |  deraadt | 2014-06-30 | 1 | -9/+8 |
* | limits.h rather than sys/param.h |  deraadt | 2014-06-30 | 1 | -2/+3 |
* | merge ohash into 1 source file, then we can revisit next roadmap items. |  deraadt | 2014-06-02 | 15 | -541/+334 |
* | zap trailing whitespace; |  jmc | 2014-05-13 | 1 | -4/+4 |
* | move the ohash functions into libutil by popular demand. |  espie | 2014-05-12 | 17 | -2/+991 |
* | fix an error in the stride calculations. the math only works for multiples |  tedu | 2014-04-08 | 1 | -4/+9 |
* | explicit_bzero where useful |  tedu | 2014-01-31 | 2 | -11/+11 |
* | obvious .Pa fixes; found with mandocdb(8) |  schwarze | 2014-01-21 | 1 | -8/+8 |
* | Wrap long line. |  jsing | 2014-01-18 | 1 | -3/+3 |
* | constify data parameter in imsg_add() and imsg_compose() |  eric | 2013-12-26 | 3 | -10/+10 |
* | tweak comment |  tedu | 2013-12-22 | 1 | -3/+3 |
* | fairly simple unsigned char casts for ctype |  deraadt | 2013-11-29 | 1 | -5/+6 |
* | document that ibuf_write() and msgbuf_write() can now return EAGAIN |  benno | 2013-11-13 | 1 | -3/+9 |
* | original bug diagnosed by sthen: automatic retry in msgbuf_write on |  benno | 2013-11-13 | 1 | -3/+3 |
* | Fix FILE * leak in error path if fprintf fails. Found by and OK gilles@ |  millert | 2013-10-01 | 1 | -2/+4 |
* | Use %lld and cast to (long long) when printing time_t values and atoll() |  guenther | 2013-08-17 | 1 | -9/+10 |
* | some Bx/Ox conversion; |  jmc | 2013-08-14 | 1 | -3/+5 |
* | Switch time_t, ino_t, clock_t, and struct kevent's ident and data |  guenther | 2013-08-13 | 1 | -2/+2 |
* | When writing a new record in pw_copy() print the uid and gid as |  millert | 2013-08-06 | 1 | -2/+2 |
* | fix a colossal cockup due to pointer/array confusion. |  tedu | 2013-07-29 | 1 | -7/+6 |
* | i copied .Fd just like everybody else. use .In |  tedu | 2013-06-05 | 1 | -3/+3 |
* | use fancy .In macro for includes. from Jan Klemkow. ok jmc schwarze |  tedu | 2013-06-05 | 18 | -65/+65 |
* | revert. check is < 1, not < 0. |  tedu | 2013-06-04 | 1 | -1/+3 |