summaryrefslogtreecommitdiff
path: root/lib/readutmp.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2006-10-18 17:51:57 +0000
committerJim Meyering <jim@meyering.net>2006-10-18 17:51:57 +0000
commit6b3d5a4784fead9ed93f8ca3726848afafecbb3a (patch)
tree36562ed441959352862c21f9f0e8470e6f5bb6db /lib/readutmp.c
parent442a1c66eb723a999e19bed4045e0a4d19b441f3 (diff)
downloadgnulib-6b3d5a4784fead9ed93f8ca3726848afafecbb3a.tar.gz
* lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
type for a local, and rename it: s/up/user_proc/.
Diffstat (limited to 'lib/readutmp.c')
-rw-r--r--lib/readutmp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/readutmp.c b/lib/readutmp.c
index aec1fee449..73c7b53084 100644
--- a/lib/readutmp.c
+++ b/lib/readutmp.c
@@ -69,11 +69,11 @@ extract_trimmed_name (const STRUCT_UTMP *ut)
static inline bool
desirable_utmp_entry (STRUCT_UTMP const *u, int options)
{
- int up = IS_USER_PROCESS (u);
- if ((options & READ_UTMP_USER_PROCESS) && !up)
+ bool user_proc = IS_USER_PROCESS (u);
+ if ((options & READ_UTMP_USER_PROCESS) && !user_proc)
return false;
if ((options & READ_UTMP_CHECK_PIDS)
- && up
+ && user_proc
&& (UT_PID (u) <= 0
|| (kill (UT_PID (u), 0) < 0 && errno == ESRCH)))
return false;