summaryrefslogtreecommitdiff
path: root/src/who.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-01-31 08:38:07 +0000
committerJim Meyering <jim@meyering.net>2000-01-31 08:38:07 +0000
commit6b43446a33b8cbba73ae6ab08a5602f9046734b6 (patch)
tree5cbd49138e8e0b98f06160117fef0170cea4fcf3 /src/who.c
parentc3a1a2a912e0ef677cb36f3931c9ac6823f989aa (diff)
downloadcoreutils-6b43446a33b8cbba73ae6ab08a5602f9046734b6.tar.xz
Use UT_USER in place of hard-coded `->ut_name' here, too.
Diffstat (limited to 'src/who.c')
-rw-r--r--src/who.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/who.c b/src/who.c
index 6ab23d284..db175a623 100644
--- a/src/who.c
+++ b/src/who.c
@@ -1,5 +1,5 @@
/* GNU's who.
- Copyright (C) 1992-1999 Free Software Foundation, Inc.
+ Copyright (C) 1992-2000 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
@@ -153,7 +153,7 @@ print_entry (const STRUCT_UTMP *utmp_ent)
last_change = 0;
}
- printf ("%-8.*s", (int) sizeof (utmp_ent->ut_name), utmp_ent->ut_name);
+ printf ("%-8.*s", (int) sizeof (UT_USER (utmp_ent)), UT_USER (utmp_ent));
if (include_mesg)
printf (" %c ", mesg);
printf (" %-8.*s", (int) sizeof (utmp_ent->ut_line), utmp_ent->ut_line);
@@ -219,7 +219,7 @@ list_entries_who (int n, const STRUCT_UTMP *utmp_buf)
entries = 0;
while (n--)
{
- if (utmp_buf->ut_name[0]
+ if (UT_USER (utmp_buf)[0]
#ifdef USER_PROCESS
&& utmp_buf->ut_type == USER_PROCESS
#endif
@@ -261,7 +261,7 @@ scan_entries (int n, const STRUCT_UTMP *utmp_buf)
while (n--)
{
- if (utmp_buf->ut_name[0]
+ if (UT_USER (utmp_buf)[0]
#ifdef USER_PROCESS
&& utmp_buf->ut_type == USER_PROCESS
#endif
@@ -299,7 +299,7 @@ search_entries (int n, const STRUCT_UTMP *utmp_buf, const char *line)
{
while (n--)
{
- if (utmp_buf->ut_name[0]
+ if (UT_USER (utmp_buf)[0]
#ifdef USER_PROCESS
&& utmp_buf->ut_type == USER_PROCESS
#endif