Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-07-19 | sort; ok deraadt | Jason McIntyre | |
2015-07-19 | typo; ralf horstmann | Theo de Raadt | |
2015-07-19 | word fix; | Jason McIntyre | |
2015-07-19 | oops, SYS_ prefix stayed; noted by jmc | Theo de Raadt | |
2015-07-19 | no need for -compact; | Jason McIntyre | |
2015-07-19 | some basic tweaks; | Jason McIntyre | |
2015-07-19 | Trailing spaces and missing .Pp. | Nicholas Marriott | |
2015-07-19 | succesfull -> succesful, from Ross L Richardson | Nicholas Marriott | |
2015-07-19 | adding a syscall requires a minor bump; ok guenther@ | Ingo Schwarze | |
2015-07-19 | manual page for tame(2). not very good, so i will be hearing from jmc | Theo de Raadt | |
2015-07-18 | tweak previous; | Jason McIntyre | |
2015-07-18 | Unbreak, add errno header | Jeremy Evans | |
OK tedu@ | |||
2015-07-18 | set errno in null cases, just in case. | Ted Unangst | |
2015-07-18 | standards compliant error return (null). will make ruby happier, at least. | Ted Unangst | |
ok deraadt jeremy | |||
2015-07-18 | On systems with a full routing table (550k+), we often want to be able to | Peter 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-16 | remove the stubby not working mmaped file support. ok sthen (long ago) | Ted Unangst | |
2015-07-15 | mention that swapctl(2) can also be used to retrieve statistics | Jasper Lievisse Adriaanse | |
ok millert@ | |||
2015-07-14 | Fall back to scanning /dev if /var/run/dev.db does not exist. | Todd C. Miller | |
OK deraadt@ | |||
2015-07-14 | The first argument to devname(3) should be dev_t, not int. | Todd C. Miller | |
The man page was already correct. | |||
2015-07-13 | Do not write a warning to stderr if the db cannot be opened, just | Todd C. Miller | |
return an error. Avoids bogus warnings in chroots. OK deraadt@ ajacoutot@ | |||
2015-07-07 | the C locale should contain only ASCII | semarie | |
suggestion for removing (instead of commenting) the lines from stsp@ OK millert@ | |||
2015-07-03 | There are no ${LIBCSRCDIR}/arch/${MACHINE_CPU}/locale directories in | semarie | |
cvs. Remove the unused search path from Makefile.inc "fine with me" stsp@ | |||
2015-07-02 | remove 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-23 | Add STANDARDS section; isblank(3) was specified in C99. | Anthony J. Bentley | |
ok jung@ jmc@ | |||
2015-06-21 | Just return if nmemb is 0. Avoids a NULL dereference and is | Todd C. Miller | |
consistent with the behavior of the other libc sort functions. OK deraadt@ | |||
2015-06-20 | Bump major after {,asr_}print_sockaddr() renaming. | Jeremie Courreges-Anglas | |
2015-06-20 | Rename print_sockaddr() to avoid symbol visibility problems | Jeremie Courreges-Anglas | |
print_sockaddr is internal to asr, and conflicts with ports/net/samba4. ok eric@ | |||
2015-06-19 | Tweak whitespace and remove dangling, unneeded "else". | Jeremie Courreges-Anglas | |
No functional change. | |||
2015-06-19 | Remove 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-17 | Set FUNC symbol sizes of auto-generated and hand-written syscall wrappers. | Masao Uebayashi | |
Original diff from guenther@, adjusted by me. OK guenther@ | |||
2015-06-13 | in glob() initialize the glob_t before the first failure check. | Theo de Raadt | |
from j@pureftpd.org ok millert stsp | |||
2015-06-12 | Reuse SYSENTRY_HIDDEN() in SYSENTRY(); no functional changes. | Masao Uebayashi | |
2015-06-09 | Remove unused parameter of load_locale_sub(). No assembly change on i386. | Stefan Sperling | |
Diff from Sebastien Marie. objdump foo help from uwe | |||
2015-06-08 | At 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-04 | force reseeding if pid has changed. | Eric Faurot | |
ok deraadt@ | |||
2015-06-04 | make sure to check for resolv.conf update the first time the resolver | Eric Faurot | |
is used after pid has changed. ok deraadt@ | |||
2015-06-03 | snprintf(3) is available on all modern systems and asprintf(3) is | Todd C. Miller | |
available on more systems these days. OK deraadt@ | |||
2015-06-03 | Do not assume that asprintf() clears the pointer on failure, which | Todd C. Miller | |
is non-portable. Also add missing asprintf() return value checks. OK deraadt@ guenther@ doug@ | |||
2015-06-02 | write Mobile IP{,v6} in a consistent way, as given in RFCs 5944 and 6275. | Igor Sobrado | |
ok jmc@ | |||
2015-06-01 | Since the __{div,rem}{l,q}{,u} special libc entry points use a specific | Miod Vallat | |
calling convention which conflicts over t11 usage with the secureplt calling convention, force these symbols to be `notype' rather `function', so that the linker will not attempt to use plt relocations for them in the absence of explicit relocation information. Note that these symbols are still public and still callable with the old plt convention, so existing binaries will still work with an updated libc, and no libc version change is necessary. | |||
2015-06-01 | Put END() matching _ENTRY() (== ENTRY() w/o prof). | Masao Uebayashi | |
2015-06-01 | Put END() matching ENTRY(). | Masao Uebayashi | |
2015-05-31 | Simple macro fixes (Fd -> In, Nm -> Fn) from Kaspars at Bankovskis dot net. | Ingo Schwarze | |
No content change. | |||
2015-05-29 | Put END() where appropriate. | Masao Uebayashi | |
While here, kill redundant use of _C_LABEL() in ENTRY(). | |||
2015-05-29 | Put obvious END() macros that match ENTRY() entries. | Masao Uebayashi | |
2015-05-29 | fix a possible off-by-one when reading /etc/hosts if it doesn't end | Eric Faurot | |
with a newline. ok jca@ | |||
2015-05-29 | Sprinkle END() in some straightforward *.S files that have ENTRY(). The | Masao Uebayashi | |
resulting *.o have "FUNC" symbols with size set. | |||
2015-05-26 | Bring back `1:' label removed by mistake in 1.7. Complained loudly about by gas | Miod Vallat | |
2.17, while 2.15 didn't care, which just caused a cold shiver accross my spine. | |||
2015-05-26 | simply use _PATH_HOSTS where appropriate | Eric Faurot | |
2015-05-25 | Kill outdated comment. | Jeremie Courreges-Anglas | |
ok eric@ |