# HG changeset patch # User Jim Meyering # Date 990971191 0 # Node ID 2eb2a4cf6d1803a8e536e73953f6009d4ddd99a3 # Parent b913128f710e601936577570586a2d7020fd0131 (UT_TYPE): Define. diff --git a/lib/readutmp.h b/lib/readutmp.h --- a/lib/readutmp.h +++ b/lib/readutmp.h @@ -1,5 +1,5 @@ /* Declarations for GNU's read utmp module. - Copyright (C) 1992-2000 Free Software Foundation, Inc. + Copyright (C) 1992-2001 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -69,6 +69,9 @@ # undef UT_USER # define UT_USER(Utmp) ((Utmp)->ut_name) # endif +# if defined HAVE_STRUCT_UTMPX_UT_TYPE +# define UT_TYPE(Utmp) ((Utmp)->ut_type) +# endif # else @@ -79,6 +82,9 @@ # undef UT_USER # define UT_USER(Utmp) Utmp->ut_name # endif +# if defined HAVE_STRUCT_UTMP_UT_TYPE +# define UT_TYPE(Utmp) ((Utmp)->ut_type) +# endif # endif