summaryrefslogtreecommitdiff
path: root/libexec/fingerd/fingerd.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1997-08-16 21:38:22 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1997-08-16 21:38:22 +0000
commit3b366ac58ec68b52a7fe04a601298b0bfb1a9cd7 (patch)
tree493a1930f9c737685b80e1cb72e20abca7eebb2c /libexec/fingerd/fingerd.c
parent17e96e5a3e53fb29db59531e05721706dc527a4d (diff)
<string.h> not <strings.h>
Diffstat (limited to 'libexec/fingerd/fingerd.c')
-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 38cddb4f8d3..6c040bcbeaa 100644
--- a/libexec/fingerd/fingerd.c
+++ b/libexec/fingerd/fingerd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fingerd.c,v 1.9 1997/08/16 20:34:20 millert Exp $ */
+/* $OpenBSD: fingerd.c,v 1.10 1997/08/16 21:38:21 millert Exp $ */
/*
* Copyright (c) 1983, 1993
@@ -43,7 +43,7 @@ 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.9 1997/08/16 20:34:20 millert Exp $";
+static char rcsid[] = "$OpenBSD: fingerd.c,v 1.10 1997/08/16 21:38:21 millert Exp $";
#endif
#endif /* not lint */
@@ -58,7 +58,7 @@ static char rcsid[] = "$OpenBSD: fingerd.c,v 1.9 1997/08/16 20:34:20 millert Exp
#include <netdb.h>
#include <stdio.h>
#include <stdlib.h>
-#include <strings.h>
+#include <string.h>
#include "pathnames.h"
void err __P((const char *, ...));