History log of /netbsd/lib/libutil/logout.c (Results 1 – 16 of 16)
Revision Date Author Comments
# 232f61fa 27-Aug-2005 elad <elad@NetBSD.org>

Lint warnings.


# 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.


# 961e3a84 27-Sep-2002 jdolecek <jdolecek@NetBSD.org>

put utmpx/wtmpx routines to separate files, so that programs overriding the
utmp/wtmp routines could still be linked static
fixes e.g. static build of ftpd


# 8720535d 27-Jul-2002 christos <christos@NetBSD.org>

add utmpx/wtmpx processing routines.


# fce98185 05-Jul-2000 ad <ad@NetBSD.org>

- __RCSID() police.
- ANSIfy.
- Miscellaneous style changes.
- Shutup lint(1) in one or two cases.


# 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 ...


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

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


# 34c4557d 30-Mar-1998 kleink <kleink@NetBSD.org>

Need <time.h> for time() prototype.


# 66105c37 25-Aug-1997 kleink <kleink@NetBSD.org>

Lseek(2) usage cleanup: the use of L_SET/L_INCR/L_XTND is deprecated,
use SEEK_SET/SEEK_CUR/SEEK_END instead.


# f5646a08 29-Jun-1997 christos <christos@NetBSD.org>

- RCSID police
- Add ttymsg.3


# e42a9484 15-May-1996 jtc <jtc@NetBSD.org>

Minor reorganization of libutil, including the addition of passward
locking and editing functions.
From Greg Hudson <ghudson@MIT.EDU>


# 3a724adb 04-May-1994 cgd <cgd@NetBSD.org>

minor cleanup; kill unnecessary casts


# f74f7005 01-Apr-1994 cgd <cgd@NetBSD.org>

off_t


# e9d867ef 01-Aug-1993 mycroft <mycroft@NetBSD.org>

Add RCS identifiers.


# 61f28255 21-Mar-1993 cgd <cgd@NetBSD.org>

initial import of 386bsd-0.1 sources