aboutsummaryrefslogtreecommitdiff
path: root/toys/pending/telnetd.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/pending/telnetd.c')
-rw-r--r--toys/pending/telnetd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/toys/pending/telnetd.c b/toys/pending/telnetd.c
index ad39d8c0..bb08e785 100644
--- a/toys/pending/telnetd.c
+++ b/toys/pending/telnetd.c
@@ -119,9 +119,9 @@ static void utmp_entry(void)
setutent(); //start from start
while ((utp_ptr = getutent()) != NULL) {
if (utp_ptr->ut_pid == pid && utp_ptr->ut_type >= INIT_PROCESS) break;
- }
+ }
if (!utp_ptr) entry.ut_type = DEAD_PROCESS;
- time(&entry.ut_time);
+ entry.ut_time = time(0);
setutent();
pututline(&entry);
}