History log of /netbsd/lib/libcompat/4.3/rexec.c (Results 1 – 16 of 16)
Revision Date Author Comments
# 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.


# 4ba7375d 11-Nov-2002 thorpej <thorpej@NetBSD.org>

Fix signed/unsigned comparison warnings, and shadow warnings.


# 11e33988 05-Nov-2001 lukem <lukem@NetBSD.org>

WARNS=2 fixes


# d8962612 20-Sep-1999 lukem <lukem@NetBSD.org>

back out the #ifdef _DIAGNOSTIC argument checks; too many people complained.
_DIAGASSERT() is still retained.


# b48252f3 16-Sep-1999 lukem <lukem@NetBSD.org>

* use _DIAGASSERT() to check pointer arguments against NULL and file
descriptors against -1 (as appropriate).
* add actual checks which to detect stuff that would trigger_DIAGASSERT(),
and attemp

* use _DIAGASSERT() to check pointer arguments against NULL and file
descriptors against -1 (as appropriate).
* add actual checks which to detect stuff that would trigger_DIAGASSERT(),
and attempt to return a sane error condition.
* knf some code
* remove some `register' decls.

the first two items result in the addition of code similar to the
following in various functions:

_DIAGASSERT(path != NULL)
#ifdef _DIAGNOSTIC
if (path == NULL) {
errno = EFAULT;
return (-1);
}
#endif

show more ...


# 1528b775 02-Jul-1999 simonb <simonb@NetBSD.org>

More trailing white space.


# 5ac20716 09-May-1999 mycroft <mycroft@NetBSD.org>

LP64 fixes. *sigh*


# 3ecd1f9c 04-May-1999 christos <christos@NetBSD.org>

- KNF
- add NetBSD comment
- use warn instead of perror
- protect overflowing the stack on bad DNS records
- delint


# a843f0f8 10-Aug-1998 perry <perry@NetBSD.org>

bzero->memset, bcopy->memcpy, bcmp->memcmp


# 64288566 19-Mar-1998 tv <tv@NetBSD.org>

FTP uses ruserpass() differently from that in libcompat. Fix rexec to
recognize that the new ruserpass returns an int (but ignore it for now),
and ruserpass does not accept an acct pointer.


# e37aec67 09-Oct-1997 lukem <lukem@NetBSD.org>

rcsid facism, WARNSify


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

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


# dde1c1a0 05-Jun-1995 pk <pk@NetBSD.org>

Prototypes (PR#1098).


# 89ef25da 03-Jun-1995 mycroft <mycroft@NetBSD.org>

Fill in sin_len.


# 73de321a 19-Oct-1994 cgd <cgd@NetBSD.org>

needs string.h


# 74c187c2 06-May-1994 cgd <cgd@NetBSD.org>

update