History log of /netbsd-src/lib/libutil/logwtmp.c (Results 1 – 14 of 14)
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.


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


# 983a6b1f 09-Dec-1998 christos <christos@NetBSD.org>

Delint


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

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


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


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

Prototypes (PR#1100).


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

minor cleanup; kill unnecessary casts


# 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