From c9bffd01300f22635a979f3801da42c2dfbe9a88 Mon Sep 17 00:00:00 2001 From: christos Date: Fri, 2 Aug 2002 14:06:07 +0000 Subject: [PATCH] fix argument order. --- usr.sbin/pppd/pppd/auth.c | 6 +++--- usr.sbin/rpc.pcnfsd/pcnfsd_misc.c | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/usr.sbin/pppd/pppd/auth.c b/usr.sbin/pppd/pppd/auth.c index 737b9d533bb8..69229ab0db76 100644 --- a/usr.sbin/pppd/pppd/auth.c +++ b/usr.sbin/pppd/pppd/auth.c @@ -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; diff --git a/usr.sbin/rpc.pcnfsd/pcnfsd_misc.c b/usr.sbin/rpc.pcnfsd/pcnfsd_misc.c index 53c1121d39fa..25da0ca59983 100644 --- a/usr.sbin/rpc.pcnfsd/pcnfsd_misc.c +++ b/usr.sbin/rpc.pcnfsd/pcnfsd_misc.c @@ -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 */