summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2005-05-27 04:27:28 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2005-05-27 04:27:28 +0000
commit0201d4dbc7eb6bd7082ac2ddfc3bd3d09030c58f (patch)
tree6014f92ae048f1f60095524ac85f1aa4cf3c544b
parentbfb8c3382606ac2793e20d4cd61666979262dfbc (diff)
include sys/time.h to get struct timeval
-rw-r--r--libexec/ftpd/logutmp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libexec/ftpd/logutmp.c b/libexec/ftpd/logutmp.c
index 4679f3ba1a0..c9628ef6ccf 100644
--- a/libexec/ftpd/logutmp.c
+++ b/libexec/ftpd/logutmp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: logutmp.c,v 1.9 2004/11/28 20:24:51 deraadt Exp $ */
+/* $OpenBSD: logutmp.c,v 1.10 2005/05/27 04:27:27 millert Exp $ */
/*
* Portions Copyright (c) 1988, 1993
* The Regents of the University of California. All rights reserved.
@@ -30,6 +30,7 @@
*/
#include <sys/types.h>
+#include <sys/time.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/in_systm.h>