summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2006-01-17 17:51:22 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2006-01-17 17:51:22 +0000
commitec5854a94536a301a5d24aca468a9deed25b946c (patch)
treeea58c100a098cb150291e0c91761e512bfb3b55b
parent320b542f2f350fd542d09861d873a80e3c2fc552 (diff)
Incllude <sys/param.h> to get MAXHOSTNAMELEN
-rw-r--r--libexec/fingerd/fingerd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/fingerd/fingerd.c b/libexec/fingerd/fingerd.c
index 621e9ab7424..fbb27824703 100644
--- a/libexec/fingerd/fingerd.c
+++ b/libexec/fingerd/fingerd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fingerd.c,v 1.31 2003/10/17 10:41:18 jmc Exp $ */
+/* $OpenBSD: fingerd.c,v 1.32 2006/01/17 17:51:21 millert Exp $ */
/*
* Copyright (c) 1983, 1993
@@ -39,11 +39,11 @@ static char copyright[] =
#if 0
static char sccsid[] = "from: @(#)fingerd.c 8.1 (Berkeley) 6/4/93";
#else
-static char rcsid[] = "$OpenBSD: fingerd.c,v 1.31 2003/10/17 10:41:18 jmc Exp $";
+static char rcsid[] = "$OpenBSD: fingerd.c,v 1.32 2006/01/17 17:51:21 millert Exp $";
#endif
#endif /* not lint */
-#include <sys/types.h>
+#include <sys/param.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>