summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--login-utils/last.c2
-rw-r--r--login-utils/login.c1
2 files changed, 1 insertions, 2 deletions
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 <linux/major.h>
#endif
#include <netdb.h>
-#include <lastlog.h>
#include <security/pam_appl.h>
#ifdef HAVE_SECURITY_PAM_MISC_H
# include <security/pam_misc.h>