Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Document errno usage. From Tobias Stoeckmann. | 2007-05-12 | 1 | -2/+16 | ||
| | | | | Earlier diff OK jmc@, with nit by otto@. | |||||
* | Use size_t for strlen results. | 2007-05-12 | 1 | -4/+6 | ||
| | | | | OK moritz@. | |||||
* | Clean up macros according to style. From tbert <bret dot lambert at gmail>. | 2007-05-12 | 1 | -27/+27 | ||
| | | | | OK moritz@ and jaredy@. | |||||
* | grammar, | 2007-05-10 | 1 | -2/+2 | ||
| | | | | okay jmc@ | |||||
* | document net.inet.tcp.keepinittime; | 2007-05-10 | 1 | -2/+2 | ||
| | | | | spotted by Daniel Ouellet; help/ok claudio | |||||
* | Use syslog_r instead of syslog in getaddrinfo. Slowly making | 2007-05-10 | 1 | -4/+9 | ||
| | | | | | | getaddrinfo reentrant. OK millert@ and deraadt@. | |||||
* | macros at start of line require a `.'; | 2007-05-02 | 1 | -2/+2 | ||
| | ||||||
* | Document the lack of error return value in arc4random. | 2007-05-02 | 2 | -9/+8 | ||
| | | | | Sync the documentation in getpid with arc4random's format. | |||||
* | Support for optional args separated with whitespace was removed | 2007-04-10 | 1 | -17/+1 | ||
| | | | | some time ago--it caused too many problems. | |||||
* | clarify return values, prompted by moritz; ok moritz jmc | 2007-04-01 | 1 | -4/+8 | ||
| | ||||||
* | document accept can return EINTR. ok millert@ jmc@ | 2007-03-30 | 1 | -1/+3 | ||
| | ||||||
* | eliminate call to abort(), which is very bad in libs. I forgat how | 2007-03-25 | 1 | -6/+9 | ||
| | | | | | this diff came into my tree, apologies for not naming the contributor. ok tedu@ deraadt@ | |||||
* | Add support for mounting arbitrary sessions, from Enache Adrian | 2007-03-21 | 1 | -1/+2 | ||
| | | | | OK deraadt@ mjc@ canacar@ krw@, with much input from Enache himself | |||||
* | Get rid of useless #if 0 block, especially since the code is included | 2007-03-19 | 1 | -5/+1 | ||
| | | | | | | immediately after. OK millert@. | |||||
* | manual page update by Bruce M. Simpson <bms@FreeBSD.org> to | 2007-03-07 | 1 | -36/+87 | ||
| | | | | | | reflect how shutdown() behaves with PF_INET and PF_INET6 sockets; help/ok millert otto | |||||
* | Remove _err() calls from getnetgrent.c. This is a minor API change | 2007-03-05 | 1 | -30/+41 | ||
| | | | | | | as _ng_sl_add() now returns a value. The only consumer of that interface is netgroup_mkdb(8). Adapted from NetBSD. OK deraadt@ | |||||
* | Move landisk to hardware floating point. At the moment the FPU context is | 2007-03-02 | 9 | -136/+265 | ||
| | | | | | | | | | | | | | | | always saved upon context switches, as FPU registers are heavily used for long long computations (don't ask). Gcc default to -m4. Credits to drahn@ otto@ and deraadt@ for feedback and help testing. Upgrade procedure if you don't want to use the damn snapshots: - build and install new kernel, reboot off it - build new gcc, do not install it yet - make includes - install new gcc - build and install lib/csu and lib/libc - make build | |||||
* | If NLS is disabled, strerror does not print the correct error string. | 2007-03-01 | 1 | -2/+2 | ||
| | | | | | | No binary change with NLS enabled. ok otto millert espie | |||||
* | - NOTES -> CAVEATS | 2007-02-28 | 1 | -19/+19 | ||
| | | | | - use escapes for <> | |||||
* | use mdoc macros; | 2007-02-28 | 1 | -57/+38 | ||
| | ||||||
* | new sentence, new line; | 2007-02-28 | 1 | -20/+25 | ||
| | ||||||
* | sha2 hashes are not 5 32-bit ints in size. Just leave out the size | 2007-02-27 | 1 | -2/+2 | ||
| | | | | | | | in ints since there are multiple flavors. The key point to get across is that when storing as a type > byte it may be necessary to do byte swapping depending on the machine's byte order. Noticed by Tamas TEVESZ. | |||||
* | Update to tzcode2007c from elsie.nci.nih.gov | 2007-02-27 | 3 | -11/+79 | ||
| | ||||||
* | Add SuperH to the architecture list which stack grow down, even though this | 2007-02-26 | 1 | -2/+3 | ||
| | | | | file is not used for them. | |||||
* | another EINVAL case documented | 2007-02-26 | 1 | -2/+6 | ||
| | ||||||
* | Now that the code is consistent, make the descriptions of EINVAL | 2007-02-26 | 4 | -11/+25 | ||
| | | | | consisten also. ok millert@ jmc@ | |||||
* | net.inet.esp.udpencap is enabled by default; | 2007-02-21 | 1 | -2/+2 | ||
| | | | | from jared rr spiegel: documentation/5385 | |||||
* | Change hard coded numbers to sizeof(buf). Also change some | 2007-02-20 | 2 | -5/+5 | ||
| | | | | | | | | sizeof(buf) - 1 to sizeof(buf), since fgets takes the whole buffer size. Based on diff from Charles Longeau <chl at tuxfamily dot org> long ago. OK millert@. | |||||
* | wording fix from wiz@netbsd, -r1.11; | 2007-02-19 | 1 | -2/+2 | ||
| | ||||||
* | from hubertf@netbsd: | 2007-02-19 | 1 | -6/+18 | ||
| | | | | | | | | | | Try to tell what this really does. Including a BUGS section on why it doesn't. *roff code by wiz@, with some input from Slava Semushin <slava.semushin@gmail.com> ok millert | |||||
* | strlen(3) returns size_t, not int. | 2007-02-18 | 1 | -14/+16 | ||
| | | | | | | Suggested by itojun@ in response to my getaddrinfo fixes. OK millert@. | |||||
* | strlen(3) returns size_t. | 2007-02-18 | 1 | -4/+6 | ||
| | | | | OK itojun@. | |||||
* | Remove duplicate code. No functional change. | 2007-02-17 | 1 | -39/+22 | ||
| | | | | OK itojun@, moritz@, and millert@. | |||||
* | Remove two mutexes by replacing getservbyname() and getservbyport() | 2007-02-15 | 2 | -32/+29 | ||
| | | | | | | calls with their reentrant versions. OK millert@. | |||||
* | correct a mistake concerning ifa_data; | 2007-02-14 | 1 | -6/+5 | ||
| | | | | found by Srebrenko Sehic, corrected by millert and claudio; | |||||
* | remove size_t and int mixup. same as getaddrinfo.c 1.30 -> 1.31. | 2007-02-14 | 1 | -5/+2 | ||
| | ||||||
* | Remove int pretending to be a size_t. | 2007-02-14 | 1 | -5/+2 | ||
| | | | | OK millert@. | |||||
* | get cheaper random bytes, less waste and no getpid() calls, which are | 2007-02-12 | 1 | -2/+3 | ||
| | | | | done by arc4random(); ok millert@ deraadt@ | |||||
* | provide an libc internal interface to get random bytes, to be used by malloc | 2007-02-12 | 1 | -3/+12 | ||
| | | | | to get random data without calling getpid(), ok millert@ deraadt@ | |||||
* | from FreeBSD via Jung (moorang at gmail), fix obvious typo in __fpu_ftox() | 2007-02-12 | 1 | -9/+9 | ||
| | | | | which caused all negative numbers returned to be == -1. | |||||
* | The buffer passed to getdirentries() must be at least as large as | 2007-02-09 | 1 | -12/+6 | ||
| | | | | | | the filesystem block size. Previously we used a constant (1024) rounded to the page size. Now we use the filesystem's block size, rounded up to the nearest page. | |||||
* | improve example by showing how to skip invalid entries; ok millert@ | 2007-02-09 | 1 | -2/+3 | ||
| | ||||||
* | grammar; | 2007-02-09 | 1 | -3/+3 | ||
| | ||||||
* | g/c __DTF_READALL. It was a flag to the internal __opendir2() but | 2007-02-08 | 1 | -4/+2 | ||
| | | | | | is never set now that the unionfs support has been removed from readdir(). OK pedro@ | |||||
* | tweaks; ok millert | 2007-02-07 | 1 | -4/+4 | ||
| | ||||||
* | sys/swap.h needs sys/param.h and sort while here | 2007-02-07 | 1 | -2/+3 | ||
| | | | | feedback and ok pedro | |||||
* | fix some dodgy displays; | 2007-02-06 | 1 | -2/+2 | ||
| | ||||||
* | Update to tzcode2007a. This adds support for 64bit time_t in case | 2007-02-06 | 18 | -400/+1090 | ||
| | | | | | | | | | we need it in the future. All of our platforms currently have 32bit time_t types. This also extends the timezone data file format to support both 32bit and 64bit data. The 64bit data is located after the 32bit data so binaries linked with the older tzcode simply won't look at it. A version field in the file header is used to determine whether the data file is the old or extended format. OK miod@ | |||||
* | fix NAME, ok jmc@ | 2007-02-03 | 1 | -2/+3 | ||
| | ||||||
* | Remove and simplify an impossible case (if *p = memchr(cp, 0, prec), | 2007-01-30 | 1 | -9/+7 | ||
| | | | | | | | | | | | p - cp cannot be greater than prec). Prevent an integer overflow when printing a string with length greater than INT_MAX. Initial diff from millert@. OK millert@, beck@, and otto@. |