fix argument order.

This commit is contained in:
christos 2002-08-02 14:06:07 +00:00
parent 0f38e42a7a
commit c9bffd0130
2 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: auth.c,v 1.31 2002/08/02 02:52:07 christos Exp $ */
/* $NetBSD: auth.c,v 1.32 2002/08/02 14:06:54 christos Exp $ */
/*
* auth.c - PPP authentication and phase control.
@ -62,7 +62,7 @@
#if 0
#define RCSID "Id: auth.c,v 1.69 2001/03/12 22:50:01 paulus Exp "
#else
__RCSID("$NetBSD: auth.c,v 1.31 2002/08/02 02:52:07 christos Exp $");
__RCSID("$NetBSD: auth.c,v 1.32 2002/08/02 14:06:54 christos Exp $");
#endif
#endif
@ -1269,7 +1269,7 @@ plogout()
logwtmp(tty, "", ""); /* Wipe out utmp logout entry */
#endif
#ifdef SUPPORT_UTMPX
logwtmpx(tty, "", "", DEAD_PROCESS, 0); /* Wipe out utmp logout entry */
logwtmpx(tty, "", "", 0, DEAD_PROCESS); /* Wipe out utmp logout entry */
#endif
#endif /* ! USE_PAM */
logged_in = 0;

View File

@ -1,4 +1,4 @@
/* $NetBSD: pcnfsd_misc.c,v 1.7 2002/08/02 02:49:27 christos Exp $ */
/* $NetBSD: pcnfsd_misc.c,v 1.8 2002/08/02 14:06:07 christos Exp $ */
/* RE_SID: @(%)/usr/dosnfs/shades_SCCS/unix/pcnfsd/v2/src/SCCS/s.pcnfsd_misc.c 1.5 92/01/24 19:59:13 SMI */
/*
@ -323,7 +323,7 @@ wlogin(name, req)
logwtmp("PC-NFS", name, host);
#endif
#ifdef SUPPORT_UTMPX
logwtmpx("PC-NFS", name, host, USER_PROCESS, 0);
logwtmpx("PC-NFS", name, host, 0, USER_PROCESS);
#endif
}
#endif /* WTMP */