diff --git a/login-utils/last.c b/login-utils/last.c index dbfa8aed1..38b92efc2 100644 --- a/login-utils/last.c +++ b/login-utils/last.c @@ -586,7 +586,7 @@ static int is_phantom(const struct last_control *ctl, struct utmp *ut) if (ut->UL_UT_TIME < ctl->boot_time.tv_sec) return 1; - pw = getpwnam(ut->ut_name); + pw = getpwnam(ut->ut_user); if (!pw) return 1; sprintf(path, "/proc/%u/loginuid", ut->ut_pid); diff --git a/login-utils/login.c b/login-utils/login.c index e1f11eb9e..c5ce1887e 100644 --- a/login-utils/login.c +++ b/login-utils/login.c @@ -55,7 +55,6 @@ # include #endif #include -#include #include #ifdef HAVE_SECURITY_PAM_MISC_H # include