summaryrefslogtreecommitdiffstats
path: root/lib/libutil (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* remove cast of malloc(), since stdlib.h is includedderaadt2015-08-201-2/+2
* Handle malloc(0) returning NULL (which can happen on some othernicm2015-07-191-2/+4
* typo in manual page.sobrado2015-07-151-3/+3
* Use memset instead of bzero for better portability.nicm2015-07-122-10/+10
* typo in embedded code block; from Ben Cornettderaadt2015-07-111-3/+3
* bzero cmsgbuf before using it, silences valgrind warnings.brynet2015-07-032-2/+4
* The correct semantic is to check msgbuf_write() for <= 0, not just < 0.reyk2015-06-112-9/+9
* Do not assume that asprintf() clears the pointer on failure, whichmillert2015-06-031-3/+2
* Use strtonum() instead of strtoul() when parsing uid/gid so we getmillert2015-04-241-49/+52
* tzfile.h is an internal header that should never have been installed.millert2015-03-151-4/+5
* Include stdint.h, not limits.h to get SIZE_MAX. OK guenther@millert2015-02-051-2/+2
* Move to the <limits.h> universe.deraadt2015-01-161-3/+4
* remove .Tn; from Jan Stary <hans at stare dot cz>schwarze2015-01-153-18/+10
* rename blocks to words. bcrypt "blocks" are unrelated to blowfish blocks,tedu2015-01-121-6/+6
* declare a local version of MIN(), call it MINIMUM()deraadt2015-01-081-2/+4
* declare a local version of MIN(), call it MINIMUM()deraadt2015-01-081-2/+4
* Do not need sys/param.hderaadt2015-01-072-4/+3
* typo in comment: ouput => outputdjm2014-12-301-2/+2
* return ERANGE instead of ENOMEM, so callers can differentiate real oombenno2014-12-251-2/+2
* use the actual function name in .Dt and NAME .Nm, not an alias;schwarze2014-12-041-4/+4
* no first person in man pages.tedu2014-11-251-3/+3
* Explain why we deviate slightly from the PBKDF2 standard.doug2014-09-271-3/+5
* obvious cases of missing .An;schwarze2014-09-082-8/+13
* Delete secret or secret-derived data with explicit_bzero.doug2014-08-251-2/+2
* Use O_CLOEXEC wherever we open a file and then call fcntl(F_SETFD, FD_CLOEXEC)guenther2014-08-151-10/+3
* include stdint.h for standard ints. from Jean-Philippe Ouellettedu2014-07-131-1/+2
* sys/types.h rather than sys/param.h, where applicable. avoid overreach.deraadt2014-06-307-14/+13
* sort includes much more sensiblyderaadt2014-06-301-9/+8
* limits.h rather than sys/param.hderaadt2014-06-301-2/+3
* merge ohash into 1 source file, then we can revisit next roadmap items.deraadt2014-06-0215-541/+334
* zap trailing whitespace;jmc2014-05-131-4/+4
* move the ohash functions into libutil by popular demand.espie2014-05-1217-2/+991
* fix an error in the stride calculations. the math only works for multiplestedu2014-04-081-4/+9
* explicit_bzero where usefultedu2014-01-312-11/+11
* obvious .Pa fixes; found with mandocdb(8)schwarze2014-01-211-8/+8
* Wrap long line.jsing2014-01-181-3/+3
* constify data parameter in imsg_add() and imsg_compose()eric2013-12-263-10/+10
* tweak commenttedu2013-12-221-3/+3
* fairly simple unsigned char casts for ctypederaadt2013-11-291-5/+6
* document that ibuf_write() and msgbuf_write() can now return EAGAINbenno2013-11-131-3/+9
* original bug diagnosed by sthen: automatic retry in msgbuf_write onbenno2013-11-131-3/+3
* Fix FILE * leak in error path if fprintf fails. Found by and OK gilles@millert2013-10-011-2/+4
* Use %lld and cast to (long long) when printing time_t values and atoll()guenther2013-08-171-9/+10
* some Bx/Ox conversion;jmc2013-08-141-3/+5
* Switch time_t, ino_t, clock_t, and struct kevent's ident and dataguenther2013-08-131-2/+2
* When writing a new record in pw_copy() print the uid and gid asmillert2013-08-061-2/+2
* fix a colossal cockup due to pointer/array confusion.tedu2013-07-291-7/+6
* i copied .Fd just like everybody else. use .Intedu2013-06-051-3/+3
* use fancy .In macro for includes. from Jan Klemkow. ok jmc schwarzetedu2013-06-0518-65/+65
* revert. check is < 1, not < 0.tedu2013-06-041-1/+3