summaryrefslogtreecommitdiffstats
path: root/lib/libc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Make the functions (which get linked in if <ctype.h> isn't #included) behavepjanzen2001-06-273-22/+43
| | | | correctly. Also, don't let them segfault.
* use strlcpy vs strncpy+a[len-1]='\0'. millert@ ok.lebel2001-06-2729-132/+91
|
* crank minor number, for new getpeereid() syscalldugsong2001-06-261-1/+1
|
* implement djb's getpeereid(2), to allow local-domain servers to determine client credentials. mostly from superscript.com. deraadt@ okdugsong2001-06-264-4/+125
|
* Refer to siginterrupt(3) rather than to a nonexistant part of intro(2)pjanzen2001-06-251-4/+3
|
* Document that behaviour is undefined if the argument isn't EOF or an unsignedpjanzen2001-06-2513-13/+117
| | | | char.
* grammarpjanzen2001-06-251-2/+2
|
* When splitting instance from username, treat '/' as a separator asmillert2001-06-242-19/+22
| | | | well (for Kerb5).
* document ll, depreciate qprovos2001-06-231-4/+6
|
* more .%A handling; bk@rt.fmderaadt2001-06-232-4/+6
|
* ok, tmac is now fixedderaadt2001-06-236-14/+22
|
* join .%A entries; most by bk@rt.fmderaadt2001-06-236-22/+14
|
* Clarify that if strlcat() does not find a NUL within siz byte itmillert2001-06-181-2/+4
| | | | will not NUL terminate either.
* Add new cgetusedb() function to toggle reading of .db files in getcap(3).millert2001-06-183-6/+46
| | | | | | Needed for cap_mkdb to really DRT when given several input files or an output file with a different name from the input file. cvs: ----------------------------------------------------------------------
* compile libc with -Werror since any warnings gcc produces without extra -Wfoo directives is something we care aboutmillert2001-06-181-1/+2
|
* Fix a char vs. u_char problem I introduced in the last commit.millert2001-06-181-2/+3
|
* Disable the STATUS character when reading passwords -- people seem tomillert2001-06-161-5/+21
| | | | expect to be able to use ^T in a password.
* sysarch() takes a void *deraadt2001-06-161-2/+2
|
* Fix a buf oflow in EXAMPLES code; millert@ okaaron2001-06-141-3/+6
|
* SYSLEAF, not LEAF. shared libc_r builds now on alpha.art2001-06-131-3/+3
|
* prettyart2001-06-131-2/+2
|
* "#endif _THREAD_SAFE" is not legalart2001-06-131-3/+3
|
* on openbsd, NI_MAXHOST value is different from RFC2553. PR 1870itojun2001-06-121-2/+7
|
* support EDNS0 (RFC2671) buffer size notification on DNS queries.itojun2001-06-115-9/+56
| | | | | | | | | "options edns0" in /etc/resolv.conf will enable the behavior. no behavior change if you don't have the line. see resolv.conf(5) for more details. EDNS0 is useful for avoiding TCP DNS queries/replies on larger DNS responses. also, draft-ietf-dnsext-message-size-* plans to mandate EDNS0 support for DNS clients that support IPv6 transport.
* remove confusing comparison with srand (it does not return the old seed)assar2001-06-091-11/+3
| | | | use .Sh AUTHORS and .An for author
* Fix pasto; kleink@netbsd.orgpjanzen2001-06-051-2/+2
|
* License clarification from David Mazieres, ok deraadt@pvalchev2001-06-051-3/+2
|
* repair copyright notices for NRL & cmetz; cmetzderaadt2001-06-054-5/+1
|
* oh, just include machine/asm.hmickey2001-06-041-3/+3
|
* entrieness cleanupmickey2001-06-0414-42/+46
|
* Don't bail out early for users w/o passwd file entries since we maymillert2001-06-031-5/+5
| | | | | want to cons up a fake prompt for challenge/response auth methods. markus@ OK'd.
* KERN_NPROCS documentationangelos2001-06-031-1/+4
|
* struct diskstats nowangelos2001-06-031-2/+2
|
* Fix another case of CHDIR("..") pointed out by Bruce Evansmillert2001-05-311-22/+14
| | | | | | <bde@zeta.org.au>. Instead of fixing these inline I've modified my fts_safe_changedir() function so it can be used in this case too. Thanks also to Kris Kennaway <kris@obsecurity.org>.
* knfderaadt2001-05-311-54/+54
|
* When changing directory to '..', verify that we really are wheremillert2001-05-301-4/+11
| | | | | | | we should be. This is similar to the old fts bug but happens when popping out of directories, as opposed to descending into them. Patch based on one by Kris Kennaway <kris@obsecurity.org>. Issue reported by Nick Cleaton <nick@cleaton.net>
* Complain via syslog if login.conf does not exist. With the BSDmillert2001-05-301-5/+2
| | | | | | authentication stuff in you really want to know if this file doesn't exist. The last two releases have shipped with /etc/login.conf so there's no excuse not to have it, other than an error.
* mention setusercontext() return valuemillert2001-05-291-1/+4
|
* Correct interval notation (<= vs. <); tadayuki@mediaone.netmillert2001-05-201-4/+2
|
* don't copy past end of record in readdir_r (ok by art)rees2001-05-171-2/+2
|
* Make path length variables size_t. This fixes the problem wheremillert2001-05-153-73/+57
| | | | | | | | | things like rm can't remove files with ridiculously long path names that were created by some script kiddie trying in vain to exploit something. Previously, the length was effectively constrained to USHRT_MAX due to one of the internal structs. Also, nuke FTS_CHDIRROOT since it never worked correctly and hasn't been documented for a long time.
* Split synopsis, plain read/write don't need uio.espie2001-05-142-8/+14
|
* Update, sync with reality. deraadt@okangelos2001-05-141-37/+76
|
* unsigned -> unsigned int; grange@rt.mipt.rumillert2001-05-131-2/+2
|
* type of function on seperate linederaadt2001-05-132-6/+8
|
* PowerPC is big endian, not little endian. This fixes isinf() and isnan()drahn2001-05-111-9/+10
|
* -1 -> MAP_FAILEDart2001-05-113-8/+8
|
* Add back MAP_COPY. Just describe why it shouldn't be used.art2001-05-111-1/+8
|
* Remove MAP_COPY. It shouldn't be used anymore.art2001-05-111-5/+1
|
* MAP_SHARED is better. Maybe we're trying to map /dev/ksyms.art2001-05-111-5/+5
| | | | And we'll never write to those mappings anyway.