summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>1997-08-16 21:38:21 +0000
committermillert <millert@openbsd.org>1997-08-16 21:38:21 +0000
commit328a01fe04d37ec2c96ee17da30aa89a2e8f003f (patch)
tree80569f4bfa22d43319ce52a93ef56fb5cbec66db
parentOpenBSD tags and document assumption about finger(1) arg parsing. (diff)
downloadwireguard-openbsd-328a01fe04d37ec2c96ee17da30aa89a2e8f003f.tar.xz
wireguard-openbsd-328a01fe04d37ec2c96ee17da30aa89a2e8f003f.zip
<string.h> not <strings.h>
-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 *, ...));