summaryrefslogtreecommitdiff
path: root/libexec/ftpd
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2002-11-17 23:46:45 +0000
committerPeter Wemm <peter@FreeBSD.org>2002-11-17 23:46:45 +0000
commitf316609eb45353eb9ee5b7aec3ed280dd08b9a31 (patch)
treefe2ac6129e2e21b162ba9b23cd0299a74ec47421 /libexec/ftpd
parent904f1b77ccbeef0024e9b2456b612488585af53f (diff)
Notes
Diffstat (limited to 'libexec/ftpd')
-rw-r--r--libexec/ftpd/logwtmp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libexec/ftpd/logwtmp.c b/libexec/ftpd/logwtmp.c
index 531f99671150..6626c8f56bf3 100644
--- a/libexec/ftpd/logwtmp.c
+++ b/libexec/ftpd/logwtmp.c
@@ -47,6 +47,7 @@ static const char rcsid[] =
#include <fcntl.h>
#include <time.h>
+#include <timeconv.h>
#include <netdb.h>
#include <utmp.h>
#include <unistd.h>
@@ -82,7 +83,7 @@ ftpd_logwtmp(line, name, addr)
(void)strncpy(ut.ut_line, line, sizeof(ut.ut_line));
(void)strncpy(ut.ut_name, name, sizeof(ut.ut_name));
(void)strncpy(ut.ut_host, host, sizeof(ut.ut_host));
- (void)time(&ut.ut_time);
+ ut.ut_time = _time_to_time32(time(NULL));
if (write(fd, &ut, sizeof(struct utmp)) !=
sizeof(struct utmp))
(void)ftruncate(fd, buf.st_size);