From: Ruediger Meier <ruediger.meier@xxxxxxxxxxx> - consistently use ut->ut_user instead of ut->ut_name - don't include obsolete lastlog.h BSD header Signed-off-by: Ruediger Meier <ruediger.meier@xxxxxxxxxxx> --- login-utils/last.c | 2 +- login-utils/login.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/login-utils/last.c b/login-utils/last.c index dbfa8ae..38b92ef 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 e1f11eb..c5ce188 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> -- 1.8.4.5 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html