Age | Commit message (Collapse) | Author | |
---|---|---|---|
1998-07-27 | Use a single character buffer for the size==0 case. Stdio internals do not ↵ | Todd C. Miller | |
deal correctly with zero size buffer and NULL pointer. torek@bsdi.com | |||
1998-07-14 | formatting flaws | Theo de Raadt | |
1998-07-03 | link for mkstemps() | Theo de Raadt | |
1998-06-30 | add mkstemp(char *template, int suffixlen) interface | Theo de Raadt | |
1998-06-21 | Remove the advertising clause in my old license, it impedes free use | Todd C. Miller | |
of the code as a large number of similar clauses makes it impossible to write an ad for a product using the code... | |||
1998-06-15 | use Bx macro for BSD versions | Michael Shalayeff | |
1998-04-14 | wrap Z->a and z->A; peter@netplex.com.au | Theo de Raadt | |
1998-03-16 | oops | Theo de Raadt | |
1998-03-12 | minor glitch | Theo de Raadt | |
1998-03-12 | explain security considerations in some detail | Theo de Raadt | |
1998-03-10 | fchown() after unlink(), taking umask into account; std conformance ↵ | Theo de Raadt | |
according to casper@HOLLAND.SUN.COM | |||
1998-03-09 | at least 6 X, 10 is better | Theo de Raadt | |
1998-03-09 | POSIX behaviour of abort; mckay | Theo de Raadt | |
1998-03-09 | grammar fixes by mckay | Theo de Raadt | |
1998-03-07 | .Bx Open -> .Ox 2.x | Todd C. Miller | |
1998-03-07 | Use .Ox | Todd C. Miller | |
1998-03-04 | uninitialized case; bde | Theo de Raadt | |
1998-02-23 | Mention that mkdtemp() is not portable. | Todd C. Miller | |
1998-02-07 | Cast pointer in assignment | Thorsten Lockert | |
1998-02-04 | clarify fileno(3) | Theo de Raadt | |
1998-01-20 | Better fix for %n and whitespace. Chris Torek <torek@bsdi.com> | Todd C. Miller | |
1998-01-19 | Ignore whitespace separating a conversion and %n. There may be | Todd C. Miller | |
a cleaner way to do this. | |||
1998-01-12 | Oops, missed a 0 vs. '\0' | Todd C. Miller | |
1998-01-12 | typo | Todd C. Miller | |
1998-01-12 | Based on some FreeBSD changes: | Todd C. Miller | |
For *s*printf, set f._file to -1 like the comments in stdio.h say. Use '\0', not 0, where appropriate. Don't error out on size of '0' for v?snprintf(). | |||
1997-11-30 | Deal with realloc() failure in v?asprintf() | Todd C. Miller | |
1997-11-29 | Build asprintf.c and vasprintf.c | Todd C. Miller | |
1997-11-29 | Implement asprintf(3) and vasprintf(3) functions similar to the | Todd C. Miller | |
ones in the glibc. Some man pages changes from FreeBSD (asprintf.c/vasprintf.c are not based on GNU or FreeBSD code). | |||
1997-11-29 | Return -1, not EOF for size < 1. XPG4.2 specifies the return value | Todd C. Miller | |
should be < 1. While EOF is currently defined as -1 it is bad form to assume this. | |||
1997-11-09 | use "(off_t)-1" instead of "-1L" (!) | flipk | |
1997-10-08 | Use lstat() not stat() so we catch dangling symlinks, hubertf@netbsd.org | Todd C. Miller | |
Also, update the man page to correspond to reality. | |||
1997-10-07 | 1) Don't truncate the input string when a directory cannot be stat'd | Todd C. Miller | |
2) Use traditional mktemp(3) semantics. Don't return an error if directories in the path don't exist yet for mktemp(3) only. | |||
1997-09-26 | Man link for mkdtemp(3). | Todd C. Miller | |
1997-07-25 | #if __STDC__ --> #ifdef __STDC__ | Michael Shalayeff | |
1997-07-08 | Don't tell people to cast NULL to a specific pointer type. | Todd C. Miller | |
1997-06-30 | snprintf(3) is not non-portable (it is part of XPG4) it is just | Todd C. Miller | |
not availalble on older systems. | |||
1997-06-20 | Add mkdtemp(3) | Todd C. Miller | |
1997-06-13 | + an Xr | Theo de Raadt | |
1997-06-05 | Xr rmdir | Theo de Raadt | |
1997-05-31 | Need <errno.h> | Thorsten Lockert | |
1997-05-31 | Set errno to EBADF when trying to write to a stream not open for writing; | Thorsten Lockert | |
required by POSIX | |||
1997-04-07 | Change a stat(2) -> lstat(2) to avoid symlink games. From Keith | Todd C. Miller | |
Bostic <bostic@bostic.com>. | |||
1997-04-03 | 10 X's for mktemp() and mkstemp(). | Todd C. Miller | |
1997-02-12 | more XXXX for mktemp | Theo de Raadt | |
1997-02-10 | Pull in stdlib.h for arc4random prototype. | Todd C. Miller | |
1997-02-07 | pre-pad with random alphabetic letters instead of digit 0 | Theo de Raadt | |
1997-01-20 | back out my last change to avoid the __warn_references on the mips - it's | Thomas Graichen | |
now done for the pmax like for the arc in machine/cdefs.h | |||
1997-01-19 | put all the __warn_references behind a #ifndef NO_WARN_REFERENCES which | Thomas Graichen | |
is then set in the libc Makefile for the mips (the mips linker can't handle them) | |||
1996-12-28 | 95% of common uses of these are incorrect and insecure. correct use is | Theo de Raadt | |
incredibly rare. Time for some education! | |||
1996-12-28 | suggest alternative in ld warn message | Theo de Raadt | |