Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add framework for resolving (pun intended) libc namespace issues, using | guenther | 2015-08-31 | 1 | -1/+2 |
| | | | | | | | | | | | | wrapper .h files and asm labels to let internal calls resolve directly and not be overridable or use the PLT. Then, apply that framework to most of the functions in stdio.h, string.h, err.h, and wchar.h. Delete the should-have-been-hidden-all-along _v?(err|warn)[cx]? symbols while here. tests clean on i386, amd64, sparc64, powerpc, and mips64 naming feedback from kettenis@ and millert@ ok kettenis@ | ||||
* | Update comment to match code; Caspar Schutijserlibressl-v2.1.4 | millert | 2015-03-02 | 1 | -2/+2 |
| | |||||
* | Make strlcpy/strlcat slightly easier to read. | millert | 2015-01-15 | 1 | -23/+23 |
| | |||||
* | zap remaining rcsid. | espie | 2005-08-08 | 1 | -5/+1 |
| | | | | | | Kill old files that are no longer compiled. okay theo | ||||
* | ansify + deregister. no binary change on i386. ok deraadt@ pat@ moritz@ | otto | 2005-03-30 | 1 | -5/+5 |
| | |||||
* | Sync with share/misc/license.template and add missing DARPA credit | millert | 2003-06-17 | 1 | -9/+9 |
| | | | | where applicable. | ||||
* | Change copyright to a less restrictive ISC-style license to encourage | millert | 2003-04-12 | 1 | -23/+12 |
| | | | | people to bundle this code. | ||||
* | ANSI function headers | millert | 2003-03-14 | 1 | -6/+3 |
| | |||||
* | type of function on seperate line | deraadt | 2001-05-13 | 1 | -3/+4 |
| | |||||
* | Back out last change, it is intended behavior and update the block | millert | 2001-05-07 | 1 | -5/+5 |
| | | | | comment to reflect this fact. Too early in the morning for me I guess. | ||||
* | strlcat() should return strlen(dst) + strlen(src) when size parameter | millert | 2001-05-07 | 1 | -3/+3 |
| | | | | | <= strlen(dst). Bug report by mark.murnane@ireland.sun.com via the GNOME folks. | ||||
* | Sync function comment with man page; fanf@covalent.net | millert | 2001-01-13 | 1 | -3/+3 |
| | |||||
* | Reverse the order of two loop invariant to make 'strlcat(0, "foo", 0)' | millert | 2001-01-12 | 1 | -3/+3 |
| | | | | not get a SEGV; Richard Kettlewell <rjk@greenend.org.uk> | ||||
* | comment fix; strlcat returns strlen(initial dst) + strlen(src). | itojun | 2000-11-24 | 1 | -3/+4 |
| | |||||
* | When finding the end of dst, never traverse more than siz bytes. This | millert | 1999-06-17 | 1 | -5/+5 |
| | | | | | | keeps us from misbehaving if the user gives us a src string that is not NUL-terminated. This is one of those "should not happen" cases but it is good to play it safe. Pointed out by Casper Dik <casper@holland.sun.com> | ||||
* | add strlcpy/strlcat, safe and sensible string copy/append | millert | 1998-07-01 | 1 | -0/+71 |