summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1997-08-18 03:11:37 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1997-08-18 03:11:37 +0000
commit9afd24b0e35ecdc6132b93f8c2dd8ee57ff8a636 (patch)
treead1c9059bcb63fca9036237695ffbdf53ebc9c5d
parenta40dd2fb1f521296ac73e77e22f23bdb19b2ec66 (diff)
#include <string.h> not <strings.h> -- Yes, I'm a weanie...
-rw-r--r--kerberosIV/krb/get_in_tkt.c4
-rw-r--r--kerberosIV/ksrvtgt/ksrvtgt.c6
-rw-r--r--kerberosIV/make_keypair/make_keypair.c4
-rw-r--r--kerberosIV/register/register.c4
-rw-r--r--kerberosIV/registerd/registerd.c4
-rw-r--r--sbin/mount_nfs/mount_nfs.c4
-rw-r--r--sbin/mount_portal/pt_tcp.c4
-rw-r--r--sbin/nfsd/nfsd.c4
-rw-r--r--sys/netiso/xebec/main.c4
-rw-r--r--sys/netiso/xebec/procs.c4
-rw-r--r--usr.bin/rusers/rusers.c6
-rw-r--r--usr.bin/sup/src/ci.c3
-rw-r--r--usr.sbin/ctm/ctm_rmail/ctm_rmail.c2
-rw-r--r--usr.sbin/fdformat/fdformat.c4
-rw-r--r--usr.sbin/mopd/common/loop-bsd.c6
-rw-r--r--usr.sbin/mopd/common/os.h6
-rw-r--r--usr.sbin/mopd/common/pf.c6
-rw-r--r--usr.sbin/rarpd/rarpd.c5
-rw-r--r--usr.sbin/timed/timedc/cmds.c4
-rw-r--r--usr.sbin/timed/timedc/timedc.c4
-rw-r--r--usr.sbin/ypserv/makedbm/makedbm.c6
-rw-r--r--usr.sbin/ypserv/revnetgroup/parse_netgroup.c6
-rw-r--r--usr.sbin/ypserv/yptest/yptest.c6
23 files changed, 52 insertions, 54 deletions
diff --git a/kerberosIV/krb/get_in_tkt.c b/kerberosIV/krb/get_in_tkt.c
index 55855750468..f894640af3e 100644
--- a/kerberosIV/krb/get_in_tkt.c
+++ b/kerberosIV/krb/get_in_tkt.c
@@ -165,14 +165,14 @@ krb_get_pw_in_tkt(user, instance, realm, service, sinstance, life, password)
#ifndef lint
static char rcsid_read_password_c[] =
-"Bones$Header: /cvs/OpenBSD/src/kerberosIV/krb/Attic/get_in_tkt.c,v 1.3 1997/01/17 07:11:54 millert Exp $";
+"Bones$Header: /cvs/OpenBSD/src/kerberosIV/krb/Attic/get_in_tkt.c,v 1.4 1997/08/18 03:11:21 millert Exp $";
#endif /* lint */
#include <des.h>
#include "conf.h"
#include <stdio.h>
-#include <strings.h>
+#include <string.h>
#include <sys/ioctl.h>
#include <signal.h>
#include <setjmp.h>
diff --git a/kerberosIV/ksrvtgt/ksrvtgt.c b/kerberosIV/ksrvtgt/ksrvtgt.c
index 806463ed6ff..6f8bdd7ae78 100644
--- a/kerberosIV/ksrvtgt/ksrvtgt.c
+++ b/kerberosIV/ksrvtgt/ksrvtgt.c
@@ -1,4 +1,4 @@
-/* $Id: ksrvtgt.c,v 1.2 1997/06/29 10:32:17 provos Exp $ */
+/* $Id: ksrvtgt.c,v 1.3 1997/08/18 03:11:22 millert Exp $ */
/*-
* Copyright 1988 by the Massachusetts Institute of Technology.
@@ -11,13 +11,13 @@
*/
#include <stdio.h>
-#include <strings.h>
+#include <string.h>
#include <sys/param.h>
#include <des.h>
#include <kerberosIV/krb.h>
const char rcsid[] =
- "$Id: ksrvtgt.c,v 1.2 1997/06/29 10:32:17 provos Exp $";
+ "$Id: ksrvtgt.c,v 1.3 1997/08/18 03:11:22 millert Exp $";
main(argc,argv)
int argc;
diff --git a/kerberosIV/make_keypair/make_keypair.c b/kerberosIV/make_keypair/make_keypair.c
index acb01bb623a..75dd30132fb 100644
--- a/kerberosIV/make_keypair/make_keypair.c
+++ b/kerberosIV/make_keypair/make_keypair.c
@@ -1,4 +1,4 @@
-/* $Id: make_keypair.c,v 1.4 1997/06/29 10:32:18 provos Exp $ */
+/* $Id: make_keypair.c,v 1.5 1997/08/18 03:11:22 millert Exp $ */
/*-
* Copyright (c) 1988, 1993
@@ -48,7 +48,7 @@ static char sccsid[] = "@(#)make_keypair.c 8.1 (Berkeley) 6/1/93";
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdio.h>
-#include <strings.h>
+#include <string.h>
#include <netdb.h>
#include <unistd.h>
#include <des.h>
diff --git a/kerberosIV/register/register.c b/kerberosIV/register/register.c
index 04d2f963c11..95904d870b6 100644
--- a/kerberosIV/register/register.c
+++ b/kerberosIV/register/register.c
@@ -1,4 +1,4 @@
-/* $Id: register.c,v 1.5 1997/06/29 10:32:19 provos Exp $ */
+/* $Id: register.c,v 1.6 1997/08/18 03:11:23 millert Exp $ */
/*-
* Copyright (c) 1989, 1993
@@ -54,7 +54,7 @@ static char sccsid[] = "@(#)register.c 8.1 (Berkeley) 6/1/93";
#include <arpa/inet.h>
#include <pwd.h>
#include <stdio.h>
-#include <strings.h>
+#include <string.h>
#include <netdb.h>
#include <unistd.h>
#include <des.h>
diff --git a/kerberosIV/registerd/registerd.c b/kerberosIV/registerd/registerd.c
index 2badc255a28..0c546edf906 100644
--- a/kerberosIV/registerd/registerd.c
+++ b/kerberosIV/registerd/registerd.c
@@ -1,4 +1,4 @@
-/* $Id: registerd.c,v 1.5 1997/06/29 10:32:20 provos Exp $ */
+/* $Id: registerd.c,v 1.6 1997/08/18 03:11:24 millert Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -58,7 +58,7 @@ static char sccsid[] = "@(#)registerd.c 8.1 (Berkeley) 6/1/93";
#include <kerberosIV/krb.h>
#include <kerberosIV/krb_db.h>
#include <stdio.h>
-#include <strings.h>
+#include <string.h>
#include "register_proto.h"
#include "pathnames.h"
diff --git a/sbin/mount_nfs/mount_nfs.c b/sbin/mount_nfs/mount_nfs.c
index e4a4acccff5..2a4c7cd849c 100644
--- a/sbin/mount_nfs/mount_nfs.c
+++ b/sbin/mount_nfs/mount_nfs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mount_nfs.c,v 1.11 1997/06/29 11:10:31 provos Exp $ */
+/* $OpenBSD: mount_nfs.c,v 1.12 1997/08/18 03:11:24 millert Exp $ */
/* $NetBSD: mount_nfs.c,v 1.12.4.1 1996/05/25 22:48:05 fvdl Exp $ */
/*
@@ -88,7 +88,7 @@ static char rcsid[] = "$NetBSD: mount_nfs.c,v 1.12.4.1 1996/05/25 22:48:05 fvdl
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
-#include <strings.h>
+#include <string.h>
#include <unistd.h>
#include "mntopts.h"
diff --git a/sbin/mount_portal/pt_tcp.c b/sbin/mount_portal/pt_tcp.c
index 0e1ef39ae38..e5f0908332a 100644
--- a/sbin/mount_portal/pt_tcp.c
+++ b/sbin/mount_portal/pt_tcp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pt_tcp.c,v 1.4 1997/06/25 18:25:50 kstailey Exp $ */
+/* $OpenBSD: pt_tcp.c,v 1.5 1997/08/18 03:11:25 millert Exp $ */
/* $NetBSD: pt_tcp.c,v 1.9 1995/05/21 15:33:22 mycroft Exp $ */
/*
@@ -45,7 +45,7 @@
#include <unistd.h>
#include <stdlib.h>
#include <errno.h>
-#include <strings.h>
+#include <string.h>
#include <sys/types.h>
#include <sys/param.h>
#include <sys/syslog.h>
diff --git a/sbin/nfsd/nfsd.c b/sbin/nfsd/nfsd.c
index 186f2d2f086..ce104041444 100644
--- a/sbin/nfsd/nfsd.c
+++ b/sbin/nfsd/nfsd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: nfsd.c,v 1.7 1997/08/04 19:25:21 deraadt Exp $ */
+/* $OpenBSD: nfsd.c,v 1.8 1997/08/18 03:11:26 millert Exp $ */
/* $NetBSD: nfsd.c,v 1.19 1996/02/18 23:18:56 mycroft Exp $ */
/*
@@ -85,7 +85,7 @@ static char rcsid[] = "$NetBSD: nfsd.c,v 1.19 1996/02/18 23:18:56 mycroft Exp $"
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
-#include <strings.h>
+#include <string.h>
#include <syslog.h>
#include <unistd.h>
diff --git a/sys/netiso/xebec/main.c b/sys/netiso/xebec/main.c
index 6b26122c426..7bdd55bd26b 100644
--- a/sys/netiso/xebec/main.c
+++ b/sys/netiso/xebec/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.2 1996/03/04 10:37:09 mickey Exp $ */
+/* $OpenBSD: main.c,v 1.3 1997/08/18 03:11:27 millert Exp $ */
/* $NetBSD: main.c,v 1.5 1994/06/29 06:41:07 cgd Exp $ */
/*
@@ -13,7 +13,7 @@
*/
#include <stdio.h>
-#include <strings.h>
+#include <string.h>
#include "malloc.h"
#include "debug.h"
#include "main.h"
diff --git a/sys/netiso/xebec/procs.c b/sys/netiso/xebec/procs.c
index 57f76fd211e..a1813952e10 100644
--- a/sys/netiso/xebec/procs.c
+++ b/sys/netiso/xebec/procs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: procs.c,v 1.2 1996/03/04 10:37:16 mickey Exp $ */
+/* $OpenBSD: procs.c,v 1.3 1997/08/18 03:11:27 millert Exp $ */
/* $NetBSD: procs.c,v 1.4 1994/06/29 06:41:12 cgd Exp $ */
/*
@@ -8,7 +8,7 @@
*/
#include <stdio.h>
-#include <strings.h>
+#include <string.h>
#include "malloc.h"
#include "main.h"
#include "debug.h"
diff --git a/usr.bin/rusers/rusers.c b/usr.bin/rusers/rusers.c
index 4afb6f5499a..defc9c49f8c 100644
--- a/usr.bin/rusers/rusers.c
+++ b/usr.bin/rusers/rusers.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rusers.c,v 1.7 1997/07/08 16:49:45 bitblt Exp $ */
+/* $OpenBSD: rusers.c,v 1.8 1997/08/18 03:11:28 millert Exp $ */
/*-
* Copyright (c) 1993 John Brezak
@@ -29,7 +29,7 @@
*/
#ifndef lint
-static char rcsid[] = "$OpenBSD: rusers.c,v 1.7 1997/07/08 16:49:45 bitblt Exp $";
+static char rcsid[] = "$OpenBSD: rusers.c,v 1.8 1997/08/18 03:11:28 millert Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -37,7 +37,7 @@ static char rcsid[] = "$OpenBSD: rusers.c,v 1.7 1997/07/08 16:49:45 bitblt Exp $
#include <sys/socket.h>
#include <netdb.h>
#include <stdio.h>
-#include <strings.h>
+#include <string.h>
#include <rpc/rpc.h>
#include <rpc/pmap_clnt.h>
#include <arpa/inet.h>
diff --git a/usr.bin/sup/src/ci.c b/usr.bin/sup/src/ci.c
index ed5acd2db75..12100239cae 100644
--- a/usr.bin/sup/src/ci.c
+++ b/usr.bin/sup/src/ci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ci.c,v 1.3 1997/01/17 07:13:18 millert Exp $ */
+/* $OpenBSD: ci.c,v 1.4 1997/08/18 03:11:29 millert Exp $ */
/*
* Copyright (c) 1991 Carnegie Mellon University
@@ -140,7 +140,6 @@
*/
-#include <strings.h>
#include <libc.h>
#include <ci.h>
#include <del.h>
diff --git a/usr.sbin/ctm/ctm_rmail/ctm_rmail.c b/usr.sbin/ctm/ctm_rmail/ctm_rmail.c
index 4ab9eb564d0..d83abc0bf8d 100644
--- a/usr.sbin/ctm/ctm_rmail/ctm_rmail.c
+++ b/usr.sbin/ctm/ctm_rmail/ctm_rmail.c
@@ -12,7 +12,7 @@
#include <stdio.h>
#include <stdlib.h>
-#include <strings.h>
+#include <string.h>
#include <ctype.h>
#include <errno.h>
#include <unistd.h>
diff --git a/usr.sbin/fdformat/fdformat.c b/usr.sbin/fdformat/fdformat.c
index e1b0d01c91f..121773d9b18 100644
--- a/usr.sbin/fdformat/fdformat.c
+++ b/usr.sbin/fdformat/fdformat.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fdformat.c,v 1.3 1997/06/23 09:34:11 deraadt Exp $ */
+/* $OpenBSD: fdformat.c,v 1.4 1997/08/18 03:11:30 millert Exp $ */
/*
* Copyright (C) 1992-1994 by Joerg Wunsch, Dresden
@@ -44,7 +44,7 @@
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
-#include <strings.h>
+#include <string.h>
#include <ctype.h>
#include <err.h>
diff --git a/usr.sbin/mopd/common/loop-bsd.c b/usr.sbin/mopd/common/loop-bsd.c
index 7168455eccd..1c58556c81c 100644
--- a/usr.sbin/mopd/common/loop-bsd.c
+++ b/usr.sbin/mopd/common/loop-bsd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: loop-bsd.c,v 1.2 1996/09/21 19:11:38 maja Exp $ */
+/* $OpenBSD: loop-bsd.c,v 1.3 1997/08/18 03:11:30 millert Exp $ */
/*
* Copyright (c) 1993-95 Mats O Jansson. All rights reserved.
@@ -30,11 +30,11 @@
*/
#ifndef LINT
-static char rcsid[] = "$OpenBSD: loop-bsd.c,v 1.2 1996/09/21 19:11:38 maja Exp $";
+static char rcsid[] = "$OpenBSD: loop-bsd.c,v 1.3 1997/08/18 03:11:30 millert Exp $";
#endif
#include <stdlib.h>
-#include <strings.h>
+#include <string.h>
#include <unistd.h>
#if defined(__bsdi__) || defined(__FreeBSD__)
#include <sys/time.h>
diff --git a/usr.sbin/mopd/common/os.h b/usr.sbin/mopd/common/os.h
index 84f7bf86c15..601b2601e97 100644
--- a/usr.sbin/mopd/common/os.h
+++ b/usr.sbin/mopd/common/os.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: os.h,v 1.2 1996/09/21 19:11:50 maja Exp $ */
+/* $OpenBSD: os.h,v 1.3 1997/08/18 03:11:31 millert Exp $ */
/*
* Copyright (c) 1994-95 Mats O Jansson. All rights reserved.
@@ -28,7 +28,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $OpenBSD: os.h,v 1.2 1996/09/21 19:11:50 maja Exp $
+ * $OpenBSD: os.h,v 1.3 1997/08/18 03:11:31 millert Exp $
*
*/
@@ -51,7 +51,7 @@
#include <sys/time.h>
#include <time.h>
#include <fcntl.h>
-#include <strings.h>
+#include <string.h>
#include <unistd.h>
#define DEV_NEW_CONF
diff --git a/usr.sbin/mopd/common/pf.c b/usr.sbin/mopd/common/pf.c
index 229422256b6..ae3ab6d86d4 100644
--- a/usr.sbin/mopd/common/pf.c
+++ b/usr.sbin/mopd/common/pf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pf.c,v 1.2 1996/09/21 19:11:52 maja Exp $ */
+/* $OpenBSD: pf.c,v 1.3 1997/08/18 03:11:31 millert Exp $ */
/*
* Copyright (c) 1993-95 Mats O Jansson. All rights reserved.
@@ -34,7 +34,7 @@
*/
#ifndef LINT
-static char rcsid[] = "$OpenBSD: pf.c,v 1.2 1996/09/21 19:11:52 maja Exp $";
+static char rcsid[] = "$OpenBSD: pf.c,v 1.3 1997/08/18 03:11:31 millert Exp $";
#endif
#include <stdio.h>
@@ -55,7 +55,7 @@ static char rcsid[] = "$OpenBSD: pf.c,v 1.2 1996/09/21 19:11:52 maja Exp $";
#include <netdb.h>
#include <ctype.h>
-#include <strings.h>
+#include <string.h>
#include <syslog.h>
#include <varargs.h>
diff --git a/usr.sbin/rarpd/rarpd.c b/usr.sbin/rarpd/rarpd.c
index 0f4d63a4291..b9442784375 100644
--- a/usr.sbin/rarpd/rarpd.c
+++ b/usr.sbin/rarpd/rarpd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rarpd.c,v 1.11 1997/07/25 20:12:18 mickey Exp $ */
+/* $OpenBSD: rarpd.c,v 1.12 1997/08/18 03:11:32 millert Exp $ */
/* $NetBSD: rarpd.c,v 1.12 1996/03/21 18:28:23 jtc Exp $ */
/*
@@ -28,7 +28,7 @@ char copyright[] =
#endif /* not lint */
#ifndef lint
-static char rcsid[] = "$OpenBSD: rarpd.c,v 1.11 1997/07/25 20:12:18 mickey Exp $";
+static char rcsid[] = "$OpenBSD: rarpd.c,v 1.12 1997/08/18 03:11:32 millert Exp $";
#endif
@@ -43,7 +43,6 @@ static char rcsid[] = "$OpenBSD: rarpd.c,v 1.11 1997/07/25 20:12:18 mickey Exp $
#include <stdlib.h>
#include <syslog.h>
#include <string.h>
-#include <strings.h>
#include <sys/types.h>
#include <unistd.h>
#include <sys/time.h>
diff --git a/usr.sbin/timed/timedc/cmds.c b/usr.sbin/timed/timedc/cmds.c
index fa6e8ca1c53..d85078513bf 100644
--- a/usr.sbin/timed/timedc/cmds.c
+++ b/usr.sbin/timed/timedc/cmds.c
@@ -36,7 +36,7 @@ static char sccsid[] = "@(#)cmds.c 5.1 (Berkeley) 5/11/93";
#endif /* not lint */
#ifdef sgi
-#ident "$Revision: 1.3 $"
+#ident "$Revision: 1.4 $"
#endif
#include "timedc.h"
@@ -47,7 +47,7 @@ static char sccsid[] = "@(#)cmds.c 5.1 (Berkeley) 5/11/93";
#include <netinet/ip_icmp.h>
#include <stdlib.h>
-#include <strings.h>
+#include <string.h>
#include <unistd.h>
#define TSPTYPES
diff --git a/usr.sbin/timed/timedc/timedc.c b/usr.sbin/timed/timedc/timedc.c
index 9c5d0d573a1..b1362416cf1 100644
--- a/usr.sbin/timed/timedc/timedc.c
+++ b/usr.sbin/timed/timedc/timedc.c
@@ -42,11 +42,11 @@ static char sccsid[] = "@(#)timedc.c 5.1 (Berkeley) 5/11/93";
#endif /* not lint */
#ifdef sgi
-#ident "$Revision: 1.2 $"
+#ident "$Revision: 1.3 $"
#endif
#include "timedc.h"
-#include <strings.h>
+#include <string.h>
#include <signal.h>
#include <ctype.h>
#include <setjmp.h>
diff --git a/usr.sbin/ypserv/makedbm/makedbm.c b/usr.sbin/ypserv/makedbm/makedbm.c
index 35a7be82a77..e81b7130d0e 100644
--- a/usr.sbin/ypserv/makedbm/makedbm.c
+++ b/usr.sbin/ypserv/makedbm/makedbm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: makedbm.c,v 1.8 1997/07/22 10:53:01 maja Exp $ */
+/* $OpenBSD: makedbm.c,v 1.9 1997/08/18 03:11:34 millert Exp $ */
/*
* Copyright (c) 1994-97 Mats O Jansson <moj@stacken.kth.se>
@@ -32,7 +32,7 @@
*/
#ifndef LINT
-static char rcsid[] = "$OpenBSD: makedbm.c,v 1.8 1997/07/22 10:53:01 maja Exp $";
+static char rcsid[] = "$OpenBSD: makedbm.c,v 1.9 1997/08/18 03:11:34 millert Exp $";
#endif
#include <stdio.h>
@@ -41,7 +41,7 @@ static char rcsid[] = "$OpenBSD: makedbm.c,v 1.8 1997/07/22 10:53:01 maja Exp $"
#include <sys/stat.h>
#include <sys/param.h>
#include <unistd.h>
-#include <strings.h>
+#include <string.h>
#include <sys/errno.h>
#include "ypdb.h"
#include "ypdef.h"
diff --git a/usr.sbin/ypserv/revnetgroup/parse_netgroup.c b/usr.sbin/ypserv/revnetgroup/parse_netgroup.c
index 03245158ef2..4dcafbbb4ab 100644
--- a/usr.sbin/ypserv/revnetgroup/parse_netgroup.c
+++ b/usr.sbin/ypserv/revnetgroup/parse_netgroup.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse_netgroup.c,v 1.1 1997/04/15 22:06:13 maja Exp $ */
+/* $OpenBSD: parse_netgroup.c,v 1.2 1997/08/18 03:11:35 millert Exp $ */
/*
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
@@ -45,13 +45,13 @@
*/
#include <stdio.h>
-#include <strings.h>
+#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include "hash.h"
#ifndef lint
-static const char rcsid[] = "$OpenBSD: parse_netgroup.c,v 1.1 1997/04/15 22:06:13 maja Exp $";
+static const char rcsid[] = "$OpenBSD: parse_netgroup.c,v 1.2 1997/08/18 03:11:35 millert Exp $";
#endif
/*
diff --git a/usr.sbin/ypserv/yptest/yptest.c b/usr.sbin/ypserv/yptest/yptest.c
index f34d413f617..f97747478a6 100644
--- a/usr.sbin/ypserv/yptest/yptest.c
+++ b/usr.sbin/ypserv/yptest/yptest.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: yptest.c,v 1.6 1997/07/26 11:59:03 maja Exp $ */
+/* $OpenBSD: yptest.c,v 1.7 1997/08/18 03:11:35 millert Exp $ */
/*
* Copyright (c) 1994 Mats O Jansson <moj@stacken.kth.se>
@@ -32,12 +32,12 @@
*/
#ifndef LINT
-static char rcsid[] = "$OpenBSD: yptest.c,v 1.6 1997/07/26 11:59:03 maja Exp $";
+static char rcsid[] = "$OpenBSD: yptest.c,v 1.7 1997/08/18 03:11:35 millert Exp $";
#endif
#include <stdio.h>
#include <unistd.h>
-#include <strings.h>
+#include <string.h>
#include <rpc/rpc.h>
#include <rpc/xdr.h>
#include <rpcsvc/yp.h>