1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
/************************************************************************
* Copyright 1995 by Wietse Venema. All rights reserved. Individual files
* may be covered by other copyrights (as noted in the file itself.)
*
* This material was originally written and compiled by Wietse Venema at
* Eindhoven University of Technology, The Netherlands, in 1990, 1991,
* 1992, 1993, 1994 and 1995.
*
* Redistribution and use in source and binary forms are permitted
* provided that this entire copyright notice is duplicated in all such
* copies.
*
* This software is provided "as is" and without any expressed or implied
* warranties, including, without limitation, the implied warranties of
* merchantibility and fitness for any particular purpose.
************************************************************************/
/* Author: Wietse Venema <wietse@wzv.win.tue.nl> */
/* light changes for inetutils : Alain Magloire */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <sys/types.h>
#ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
#else
# include <time.h>
#endif
#if defined(UTMPX) && defined(HAVE_UTMPX_H)
# define __USE_GNU
# include <utmpx.h>
#else
# include <utmp.h>
#endif
#ifdef HAVE_STRING_H
# include <string.h>
#else
# include <strings.h>
#endif
/* utmp_logout - update utmp and wtmp after logout */
void
utmp_logout (char *line)
{
#ifdef UTMPX
struct utmpx utx;
struct utmpx *ut;
strncpy (utx.ut_line, line, sizeof (utx.ut_line));
if ((ut = getutxline (&utx)))
{
ut->ut_type = DEAD_PROCESS;
ut->ut_exit.e_termination = 0;
ut->ut_exit.e_exit = 0;
gettimeofday (&(ut->ut_tv), 0);
pututxline (ut);
updwtmpx (PATH_WTMPX, ut);
}
endutxent ();
#else
struct utmp utx;
struct utmp *ut;
strncpy (utx.ut_line, line, sizeof (utx.ut_line));
if (ut = getutline (&utx))
{
# ifdef HAVE_STRUCT_UTMP_UT_TYPE
ut->ut_type = DEAD_PROCESS;
# endif
# ifdef HAVE_STRUCT_UTMP_UT_EXIT
ut->ut_exit.e_termination = 0;
ut->ut_exit.e_exit = 0;
# endif
# ifdef HAVE_STRUCT_UTMP_UT_TV
gettimeofday (&(ut->ut_tv), 0);
# else
time (&(ut->ut_time));
# endif
pututline (ut);
# ifdef HAVE_UPDWTMP
ut->ut_name[0] = 0;
ut->ut_host[0] = 0;
updwtmp (WTMP_FILE, ut);
# else
logwtmp (ut->ut_line, "", "");
# endif
}
endutent ();
#endif
}
|