diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-08-18 03:11:37 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-08-18 03:11:37 +0000 |
commit | 9afd24b0e35ecdc6132b93f8c2dd8ee57ff8a636 (patch) | |
tree | ad1c9059bcb63fca9036237695ffbdf53ebc9c5d /sbin | |
parent | a40dd2fb1f521296ac73e77e22f23bdb19b2ec66 (diff) |
#include <string.h> not <strings.h> -- Yes, I'm a weanie...
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/mount_nfs/mount_nfs.c | 4 | ||||
-rw-r--r-- | sbin/mount_portal/pt_tcp.c | 4 | ||||
-rw-r--r-- | sbin/nfsd/nfsd.c | 4 |
3 files changed, 6 insertions, 6 deletions
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> |