From 0588bacb0982757079a4be5833a100eb3597d411 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Wed, 5 Jun 1996 07:48:40 +0000 Subject: [PATCH] gettimeofday buglet git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@558 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/telnet/telnetd/sys_term.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appl/telnet/telnetd/sys_term.c b/appl/telnet/telnetd/sys_term.c index 966806e2f..8623a0f27 100644 --- a/appl/telnet/telnetd/sys_term.c +++ b/appl/telnet/telnetd/sys_term.c @@ -1520,7 +1520,7 @@ void start_login(char *host, int autologin, char *name) SCPYN(utmpx.ut_id, utid); utmpx.ut_type = LOGIN_PROCESS; - gettimeofday(&utmpx.ut_tv); + gettimeofday(&utmpx.ut_tv, NULL); if (pututxline(&utmpx) == NULL) fatal(net, "pututxline failed"); #endif