summaryrefslogtreecommitdiffstats
path: root/lib/libc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* rresvport_af() and bindresvport_af()deraadt1999-12-167-73/+209
|
* incorrect bounds on strlcpy()deraadt1999-12-161-2/+2
|
* Install swapctl.2, not swapon.2. swapon.2 should probably go away.millert1999-12-141-2/+2
|
* sync KAME rcsid.itojun1999-12-121-2/+2
|
* inet6_rthdr_reverse() is not available yet.itojun1999-12-121-1/+4
|
* prevent bogus reverse query for 1.0.0.0.in-addr.arpa.itojun1999-12-111-7/+5
| | | | this occurs by mixing up ::1 as IPv6 auto-tunnel address like ::10.1.1.1.
* fix gethostbyname2(foo, AF_INET6).itojun1999-12-111-1/+9
| | | | | on /etc/hosts lookup, file static variable "hosts" was damaged and prevented lookup of IPv6 hostnames.
* add inet6_option_* and inet6_rthdr_*.itojun1999-12-117-3/+1521
| | | | increase shlib minor.
* fix BIND820 bug in inet_pton(). it should bark if there's ambiguousitojun1999-12-081-2/+4
| | | | text after IPv6 address string, like "0:1:2:3:4:5:6:7:8".
* Don't use stdio since we don't want the password to end up in stdiomillert1999-12-081-25/+24
| | | | buffers that may not get zeroed.
* fix DNS; all this is due for squishing in a few days anyways, i suspect; fujiwara@rcac.tdi.co.jpderaadt1999-12-071-0/+1
|
* fix space regs load insns, also some tabs vs spacesmickey1999-12-051-19/+20
|
* Formatting fixes, suggested by ericj@aaron1999-12-041-31/+32
|
* fix include list; dogcow@redback.comderaadt1999-11-301-1/+2
|
* mark some places that malloc is not checkedderaadt1999-11-233-4/+8
|
* Add missing MLINKsmillert1999-11-178-14/+24
|
* typosderaadt1999-11-152-4/+4
|
* Clean up memchr slightly to better match coming memrchrespie1999-11-141-4/+4
| | | | (K&R-style type promotions are evil),
* EFAULT does not happen for all files; posix 1003.1, line 216deraadt1999-11-141-6/+6
|
* this seem proper nowmickey1999-11-142-21/+22
|
* Tweaks; millert@aaron1999-11-101-8/+9
|
* calloc.c is backmillert1999-11-101-1/+1
|
* calloc() needs to be separate from malloc in case a user wants to havemillert1999-11-102-25/+54
| | | | their own malloc() implementation.
* Merge calloc(3) man page into malloc.3; as suggested by millert@aaron1999-11-093-90/+41
|
* Move calloc() into malloc.c and only zero out the area if malloc()millert1999-11-093-55/+26
| | | | | | didn't do so for us. By default, malloc() zeros out the space it allocates but the programmer cannot rely on this as it is implementation- specific (and configurable via /etc/malloc.conf)
* Bump minor for addition of strtok_r.art1999-11-091-1/+1
|
* Install man-page links for strtok_r.art1999-11-091-1/+2
|
* Document strtok_r.art1999-11-091-8/+19
|
* Implement strtok_r.art1999-11-091-5/+15
|
* Add ip4.allow and etherip.allow entries.angelos1999-10-281-1/+9
|
* SYNOPSIS needs #include <sys/types.h>espie1999-10-081-1/+2
|
* - Xr acct(2) from accton(8) and vice-versa.aaron1999-10-071-1/+2
| | | | | - Add a FILES section to accton(8) indicating the default accounting file. - From pjanzen@
* document more tcp specific sysctls, mostly netbsd.provos1999-10-071-2/+19
|
* - let cryptographic checksums refer to each otherespie1999-10-063-8/+10
| | | | - avoid .Xref to one's own manpage
* Make this man page much clearer.aaron1999-10-061-8/+22
|
* specifed -> specifiedaaron1999-10-051-2/+2
|
* put back FTS_CHDIRROOT until next library major number crankmillert1999-10-031-8/+22
|
* kill FTS_CHDIRROOT flag, it is broken beyond repair and no longer usedmillert1999-10-032-29/+9
|
* Fix multiple problems in the FTS_NOCHDIR case (mycroft@netbsd.org):millert1999-10-031-22/+47
| | | | | | | | | | | | | | | | | | * There was an off-by-one error that caused the addition of a NUL or slash in fts_build() to overwrite other memory. * After fts_palloc(), we need to reset `cp' so that it points to the new path name buffer; otherwise the addition of the file name before calling fts_stat() could lose. Also, fix stupidity in the fts_palloc() interface. We don't want N bytes more than the current buffer size; we want N bytes more than the current length. Just pass in the new size, since we can't figure it out easily here. fts_padjust() was doing more work than it needed to. Based on changes from mycroft@netbsd.org. Check for fts_pathlen oflow in two places. Done before I saw the NetBSD change (and last I checked they only did one of the checks). In the case of wrap, return ENAMETOOLONG.
* Nail down semantics in case of failure.espie1999-09-281-2/+31
| | | | example for fdopen.
* Set j = i after arc4random key schedule to be more like arc4 stream cipher;deraadt1999-09-281-1/+2
| | | | from conversations between various people
* Correct buffer size.alex1999-09-271-3/+3
|
* Formatting and grammar.aaron1999-09-273-21/+21
|
* Remove an unwanted `.'.aaron1999-09-271-2/+2
|
* .Nm -> .Fnespie1999-09-262-4/+4
|
* Proper coding idioms.espie1999-09-262-2/+42
| | | | | [yes, there ARE some systems where read and write >SSIZE_MAX work, and physicists use those features to write huge files in one swoop]
* Remove extraneous commaespie1999-09-261-2/+2
|
* `may return following error' => `may return the following error'espie1999-09-263-7/+7
| | | | `may return following errors' => `may return one of the following errors'
* `nl' means something special to mdoc, so it must be escaped it meant literally.aaron1999-09-261-2/+2
|
* grammarpjanzen1999-09-251-9/+10
|