Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | deraadt@ objects to the caveat remark, so remove it. | miod | 2002-02-23 | 1 | -11/+1 |
| | |||||
* | Slightly improve wording and punctuation. | miod | 2002-02-23 | 1 | -4/+4 |
| | |||||
* | Add a caveat section pointing out that people affecting the return value | miod | 2002-02-23 | 1 | -5/+13 |
| | | | | | | | | of getopt() to char variables instead of int lose on arches where char is unsigned by default. Clean the example by not pasting parts of <unistd.h> into it, and by not using atoi(3). | ||||
* | We live in an ANSI C world. Remove lots of gratuitous #ifdef __STDC__ cruft. | millert | 2002-02-19 | 2 | -10/+3 |
| | |||||
* | Manual cleanup of remaining userland __P use (excluding packages maintained ↵ | millert | 2002-02-17 | 3 | -8/+8 |
| | | | | outside the tree) | ||||
* | Part one of userland __P removal. Done with a simple regexp with some minor ↵ | millert | 2002-02-16 | 9 | -22/+22 |
| | | | | hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically. | ||||
* | THREAD_UNLOCK() on error before returning; millert@ ok. | fgsch | 2002-01-23 | 1 | -1/+3 |
| | |||||
* | If the user passes in "" as the string to resolve the lstat() will | millert | 2002-01-12 | 1 | -2/+6 |
| | | | | | | fail anyway so check for that. Also convert "." to "" since that way we avoid the lstat() (which we don't need) and the subsequent chdir() and some dir checks. | ||||
* | Two functions can return errors here, not just one. | miod | 2001-12-29 | 1 | -2/+4 |
| | |||||
* | alloca cannot check if the allocation is valid. mention the consequences; ↵ | deraadt | 2001-12-06 | 1 | -1/+13 |
| | | | | millert ok | ||||
* | correct an alignment mis-conception for malloc(0) returned regions. | tdeval | 2001-12-05 | 1 | -14/+25 |
| | | | | OK deraadt@ | ||||
* | document how malloc(0) blobbies are stored, and their character | deraadt | 2001-12-05 | 1 | -1/+6 |
| | |||||
* | Comment out info on U (utrace) malloc option since we don't support it | millert | 2001-11-05 | 1 | -8/+8 |
| | | | | on OpenBSD. | ||||
* | remove dangling spaces and tabs | mickey | 2001-11-01 | 1 | -16/+16 |
| | |||||
* | Grammar. Thanks markus@ | tdeval | 2001-10-30 | 1 | -2/+2 |
| | |||||
* | mprotect allocations sized at 0 bytes. This will cause a fault for access | tdeval | 2001-10-30 | 2 | -37/+50 |
| | | | | | to such, permitting them to be discovered, instead of exploited as the ssh crc insertion detector was. Idea by theo, written by tdeval. | ||||
* | fix docs; tedu@heorot.stanford.edu | deraadt | 2001-10-29 | 1 | -7/+3 |
| | |||||
* | Initial idea from aaron@: Last char of .Xr group in SEE ALSO section should | mpech | 2001-09-06 | 1 | -2/+2 |
| | | | | | | be a single digit. Powered by mantoya@. millert@ ok. | ||||
* | Replace the deprecated BSD sigsetmask/sigblock/sigpause functions with their ↵ | millert | 2001-09-04 | 1 | -6/+8 |
| | | | | POSIX counterparts. | ||||
* | #(endif|else) foo is incorrect, make it #endif /* foo */ | heko | 2001-08-12 | 1 | -5/+5 |
| | | | | deraadt@ ok | ||||
* | o) We always close .Bl and .Bd tags; | mpech | 2001-08-06 | 2 | -4/+3 |
| | | | | | | | | | | o) .Sh AUTHOR -> .Sh AUTHORS; o) We don't like .Pp before/after .Sh; o) We don't like .Pp before/after .Rs/.Re; o) NetBSD -> .Nx; o) OpenBSD -> .Ox; millert@ ok | ||||
* | clean up. | mpech | 2001-07-27 | 1 | -2/+2 |
| | | | | millert@ ok | ||||
* | a first pass at -Wall | deraadt | 2001-07-09 | 2 | -9/+10 |
| | |||||
* | use strlcpy vs strncpy+a[len-1]='\0'. millert@ ok. | lebel | 2001-06-27 | 1 | -3/+2 |
| | |||||
* | remove confusing comparison with srand (it does not return the old seed) | assar | 2001-06-09 | 1 | -11/+3 |
| | | | | use .Sh AUTHORS and .An for author | ||||
* | unsigned -> unsigned int; grange@rt.mipt.ru | millert | 2001-05-13 | 1 | -2/+2 |
| | |||||
* | -1 -> MAP_FAILED | art | 2001-05-11 | 1 | -3/+3 |
| | |||||
* | Use madvise(MADV_FREE) to allow the 'h' option. | art | 2001-05-10 | 1 | -4/+4 |
| | | | | (the code was already there, just not enabled). | ||||
* | Various man page fixes and improvements from gluk@ | aaron | 2001-04-23 | 1 | -4/+4 |
| | |||||
* | document that exit() -> wait() only returns low bits | deraadt | 2001-03-08 | 1 | -1/+11 |
| | |||||
* | Various repairs, mostly to get rid of short lines. | aaron | 2000-12-24 | 1 | -3/+2 |
| | |||||
* | .Sh EXAMPLE -> .Sh EXAMPLES. Even if there's only one example, at least | aaron | 2000-12-15 | 1 | -2/+2 |
| | | | | this is consistent. | ||||
* | .Sh EXAMPLE -> .Sh EXAMPLES. Move this section before SEE ALSO where it | aaron | 2000-12-15 | 1 | -28/+28 |
| | | | | belongs. Closes PR/1554 from bk@rt.fm. | ||||
* | Clarify; gluk@ptci.ru | aaron | 2000-10-25 | 1 | -2/+2 |
| | |||||
* | Add a CAVEATS section to warn programmers that shell meta-characters will | aaron | 2000-10-06 | 1 | -1/+9 |
| | | | | be passed to the command interpreter. | ||||
* | For man pages that describe multiple functions, split the .Nm arguments | aaron | 2000-08-09 | 4 | -8/+15 |
| | | | | onto separate lines in the NAME section. | ||||
* | #ifdef vax -> #ifdef __vax__ | bjc | 2000-04-30 | 1 | -2/+2 |
| | |||||
* | Flesh out stdlib function man pages. | aaron | 2000-04-20 | 28 | -246/+195 |
| | |||||
* | - Formatting repairs and standardizations. | aaron | 2000-04-20 | 1 | -77/+104 |
| | | | | | - s/MESSAGES/DIAGNOSTICS/, and put message descriptions in a nice list. - Talk more about how using malloc() in signal handlers is bad. | ||||
* | missing THREAD_UNLOCK; netch@segfault.kiev.ua | deraadt | 2000-04-10 | 1 | -1/+2 |
| | |||||
* | Fix the leak for real (that's what I get for hacking when i can't sleep). | millert | 2000-04-04 | 1 | -5/+7 |
| | |||||
* | Fix an fd leak if the read from /dev/arandom fails. Pointed out by | millert | 2000-04-04 | 1 | -5/+5 |
| | | | | Markus Friedl. | ||||
* | MLINK srandomdev | millert | 2000-04-04 | 1 | -1/+2 |
| | |||||
* | Add srandomdev() from FreeBSD for use by sendmail and others. | millert | 2000-04-03 | 2 | -3/+69 |
| | |||||
* | In Unix land we prefer "whitespace" to "white space" or "white-space". At | aaron | 2000-03-04 | 4 | -8/+8 |
| | | | | least, this is the impression I get from looking at a lot of Perl docs. | ||||
* | typo fix; halogen@nol.net | deraadt | 2000-03-01 | 1 | -2/+2 |
| | |||||
* | repair prototypes; cky@pobox.com | deraadt | 2000-02-25 | 1 | -5/+5 |
| | |||||
* | repair | deraadt | 2000-01-25 | 1 | -2/+2 |
| | |||||
* | Use .Er macro when referring to errno error names. | aaron | 2000-01-22 | 1 | -3/+3 |
| | |||||
* | Clarify and mention that errno is set to ENOMEM on failure of malloc(), | pjanzen | 2000-01-19 | 1 | -5/+11 |
| | | | | calloc(), and realloc(). Idea from NetBSD. |