History log of /netbsd-src/lib/libc/string/strerror.c (Results 1 – 18 of 18)
Revision Date Author Comments
# 93b9d85a 25-Mar-2020 kre <kre@NetBSD.org>

Protect against malloc failure corrupting errno, which is not
permitted of these functions.


# 26ba8048 20-Jan-2015 christos <christos@NetBSD.org>

Fix non _REENTRANT build.


# 08a6753c 02-Sep-2013 joerg <joerg@NetBSD.org>

Missing alias for strerror_l.


# 7efdee83 19-Aug-2013 joerg <joerg@NetBSD.org>

Add strerror_l.


# 9cbc15a5 26-Jan-2006 kleink <kleink@NetBSD.org>

Must include "namespace.h" for strerror_r()'s internal name.


# 1cf13731 28-Jul-2005 christos <christos@NetBSD.org>

PR/30845: Luke Mewburn: strerror_r(3) missing
- Merge 4.4BSD strerror.3 man page changes that summarize information
for all the error printing functions. This makes the perror(3) page
obsolete.
-

PR/30845: Luke Mewburn: strerror_r(3) missing
- Merge 4.4BSD strerror.3 man page changes that summarize information
for all the error printing functions. This makes the perror(3) page
obsolete.
- Implement all error functions in terms of strerror_r(), including
__strerror() which is not used internally. Can it be removed?
- Bump version for strerror_r

show more ...


# eb7c1594 07-Aug-2003 agc <agc@NetBSD.org>

Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22280, verified by myself.


# 8cc3f315 15-Nov-1998 christos <christos@NetBSD.org>

delint


# 131e7470 27-Jul-1998 mycroft <mycroft@NetBSD.org>

Make these compile without __AUDIT__.


# 4024f736 26-Jul-1998 mycroft <mycroft@NetBSD.org>

const poisoning.


# c197a64b 16-Feb-1998 lukem <lukem@NetBSD.org>

don't assume buf is NL_TEXTMAX long


# 3d2267c8 13-Jul-1997 christos <christos@NetBSD.org>

Fix RCSID's
Use "extern.h" where appropriate.


# 9cd5492c 23-Jan-1997 mrg <mrg@NetBSD.org>

- convert unsafe strcpy(), strcat() and sprintf() to the `n' versions.
- some KNF.


# 5b951fb8 12-Oct-1994 deraadt <deraadt@NetBSD.org>

fix typo


# e19f10c7 06-Oct-1994 jtc <jtc@NetBSD.org>

Change size of array passed to __strerror() from 128 to NL_TEXTMAX.


# 6d3bf399 03-Sep-1994 jtc <jtc@NetBSD.org>

__strerror() and __strsignal() have been broken out into their own files
and use message catalogs if NLS is defined.
Increased the size of char buffers used by strerror() and strsignal();
the error a

__strerror() and __strsignal() have been broken out into their own files
and use message catalogs if NLS is defined.
Increased the size of char buffers used by strerror() and strsignal();
the error and signal strings may be much longer in some locales.

show more ...


# 845bf7e7 09-Oct-1993 jtc <jtc@NetBSD.org>

Helper function _strerror is in the user's namespace, renamed it to
__strerror().


# 473c152a 07-Oct-1993 jtc <jtc@NetBSD.org>

Moved strerror.[c3] from libc/stdio to libc/string.
Since perror is not permitted to change strerror()'s static buffer, I have
changed both functions to pass their own buffers to the new library-inte

Moved strerror.[c3] from libc/stdio to libc/string.
Since perror is not permitted to change strerror()'s static buffer, I have
changed both functions to pass their own buffers to the new library-internal
function _strerror() that actually does the error message string look up.
Split strerror manpage into strerror and perror manpages.

show more ...