summaryrefslogtreecommitdiff
path: root/lib/libc
AgeCommit message (Collapse)Author
2015-08-02spelling; ok deraadtJason McIntyre
2015-08-01Fix a potential out-of-bounds read found via address-sanitizer whileTodd C. Miller
fuzzing as reported by Elliott Hughes. OK doug@ stsp@
2015-07-28ARG_MAX is the standard name (not NCARGS); probab[l]y guentherTheo de Raadt
2015-07-28describe CPATH before TMPPATHTheo de Raadt
2015-07-28unsort: requested by deraadtJason McIntyre
2015-07-23call it bcrypt in the man page tooTed Unangst
2015-07-23permit "bcrypt" as an alias for "blowfish". this is, after all, whatTed Unangst
99% of the world calls it. allow just "bcrypt" without params to mean auto-tune ("bcrypt,a"). default remains 8 rounds (for now) ok deraadt
2015-07-23Sync with kernel TIOCGWINSZ change.Doug Hogan
2015-07-21basic macro cleanup, mostly converting to .Dv where appropriateIngo Schwarze
2015-07-20In _TM_SELF, permit uname(3); OK deraadt@.Ingo Schwarze
2015-07-20Add setgroups(2) to TAME_PROC, ok deraadtNicholas Marriott
2015-07-20Add VIS_DQ to escape double quotes. OK deraadt@ semarie@ reyk@Todd C. Miller
2015-07-19sort; ok deraadtJason McIntyre
2015-07-19typo; ralf horstmannTheo de Raadt
2015-07-19word fix;Jason McIntyre
2015-07-19oops, SYS_ prefix stayed; noted by jmcTheo de Raadt
2015-07-19no need for -compact;Jason McIntyre
2015-07-19some basic tweaks;Jason McIntyre
2015-07-19Trailing spaces and missing .Pp.Nicholas Marriott
2015-07-19succesfull -> succesful, from Ross L RichardsonNicholas Marriott
2015-07-19adding a syscall requires a minor bump; ok guenther@Ingo Schwarze
2015-07-19manual page for tame(2). not very good, so i will be hearing from jmcTheo de Raadt
2015-07-18tweak previous;Jason McIntyre
2015-07-18Unbreak, add errno headerJeremy Evans
OK tedu@
2015-07-18set errno in null cases, just in case.Ted Unangst
2015-07-18standards compliant error return (null). will make ruby happier, at least.Ted Unangst
ok deraadt jeremy
2015-07-18On systems with a full routing table (550k+), we often want to be able toPeter Hessler
look at the routes with a priority, or to display all routes that do not have a specific priority (normally, don't show bgp). OK mpi@ benno@ previous versions OK deraadt@ sthen@
2015-07-16remove the stubby not working mmaped file support. ok sthen (long ago)Ted Unangst
2015-07-15mention that swapctl(2) can also be used to retrieve statisticsJasper Lievisse Adriaanse
ok millert@
2015-07-14Fall back to scanning /dev if /var/run/dev.db does not exist.Todd C. Miller
OK deraadt@
2015-07-14The first argument to devname(3) should be dev_t, not int.Todd C. Miller
The man page was already correct.
2015-07-13Do not write a warning to stderr if the db cannot be opened, justTodd C. Miller
return an error. Avoids bogus warnings in chroots. OK deraadt@ ajacoutot@
2015-07-07the C locale should contain only ASCIIsemarie
suggestion for removing (instead of commenting) the lines from stsp@ OK millert@
2015-07-03There are no ${LIBCSRCDIR}/arch/${MACHINE_CPU}/locale directories insemarie
cvs. Remove the unused search path from Makefile.inc "fine with me" stsp@
2015-07-02remove new_categories variable from global.semarie
This variable is used as temporary buffer in order to do checking before copying the content to current_categories variable. Switch it as local variable in setlocale function. Adapts some functions. the commit collapse 3 proposed diffs on tech@, and all OK stsp@
2015-06-23Add STANDARDS section; isblank(3) was specified in C99.Anthony J. Bentley
ok jung@ jmc@
2015-06-21Just return if nmemb is 0. Avoids a NULL dereference and isTodd C. Miller
consistent with the behavior of the other libc sort functions. OK deraadt@
2015-06-20Bump major after {,asr_}print_sockaddr() renaming.Jeremie Courreges-Anglas
2015-06-20Rename print_sockaddr() to avoid symbol visibility problemsJeremie Courreges-Anglas
print_sockaddr is internal to asr, and conflicts with ports/net/samba4. ok eric@
2015-06-19Tweak whitespace and remove dangling, unneeded "else".Jeremie Courreges-Anglas
No functional change.
2015-06-19Remove needless casts. There's no reason to cast delim to char *Todd C. Miller
when we can just make spanp const char * to match it. OK deraadt@
2015-06-17Set FUNC symbol sizes of auto-generated and hand-written syscall wrappers.Masao Uebayashi
Original diff from guenther@, adjusted by me. OK guenther@
2015-06-13in glob() initialize the glob_t before the first failure check.Theo de Raadt
from j@pureftpd.org ok millert stsp
2015-06-12Reuse SYSENTRY_HIDDEN() in SYSENTRY(); no functional changes.Masao Uebayashi
2015-06-09Remove unused parameter of load_locale_sub(). No assembly change on i386.Stefan Sperling
Diff from Sebastien Marie. objdump foo help from uwe
2015-06-08At some point arm moved to a unified syntax for arm and thumb instructions.Jonathan Gray
While binutils supports both "unified" and "divided" syntax (defaulting to divided) the integrated assembler in clang only supports unified names so switch some files to unified syntax. Similiar changes were made in bitrig and freebsd. No difference in objdump -d output. tested on zaurus by deraadt@, ok miod@
2015-06-04force reseeding if pid has changed.Eric Faurot
ok deraadt@
2015-06-04make sure to check for resolv.conf update the first time the resolverEric Faurot
is used after pid has changed. ok deraadt@
2015-06-03snprintf(3) is available on all modern systems and asprintf(3) isTodd C. Miller
available on more systems these days. OK deraadt@
2015-06-03Do not assume that asprintf() clears the pointer on failure, whichTodd C. Miller
is non-portable. Also add missing asprintf() return value checks. OK deraadt@ guenther@ doug@