aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--loginutils/login.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/loginutils/login.c b/loginutils/login.c
index 35f9e4a9c..0f4b9ad9f 100644
--- a/loginutils/login.c
+++ b/loginutils/login.c
@@ -466,9 +466,11 @@ static void checkutmp(int picky)
466 466
467static void setutmp(const char *name, const char *line ATTRIBUTE_UNUSED) 467static void setutmp(const char *name, const char *line ATTRIBUTE_UNUSED)
468{ 468{
469 time_t t_tmp = (time_t)utent.ut_time;
470
469 utent.ut_type = USER_PROCESS; 471 utent.ut_type = USER_PROCESS;
470 strncpy(utent.ut_user, name, sizeof utent.ut_user); 472 strncpy(utent.ut_user, name, sizeof utent.ut_user);
471 time((time_t*)&utent.ut_time); 473 time(&t_tmp);
472 /* other fields already filled in by checkutmp above */ 474 /* other fields already filled in by checkutmp above */
473 setutent(); 475 setutent();
474 pututline(&utent); 476 pututline(&utent);