summaryrefslogtreecommitdiffstats
path: root/libexec/fingerd
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2006-01-17 17:51:21 +0000
committermillert <millert@openbsd.org>2006-01-17 17:51:21 +0000
commit01dd093f6bf001b574eece05c45dd74185da33e7 (patch)
treeb86965a549d81b632d1dc040b8eec55e84221bd0 /libexec/fingerd
parentInclude param.h for MAXHOSTNAMELEN (diff)
downloadwireguard-openbsd-01dd093f6bf001b574eece05c45dd74185da33e7.tar.xz
wireguard-openbsd-01dd093f6bf001b574eece05c45dd74185da33e7.zip
Incllude <sys/param.h> to get MAXHOSTNAMELEN
Diffstat (limited to 'libexec/fingerd')
-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>