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 /usr.sbin/mopd | |
parent | a40dd2fb1f521296ac73e77e22f23bdb19b2ec66 (diff) |
#include <string.h> not <strings.h> -- Yes, I'm a weanie...
Diffstat (limited to 'usr.sbin/mopd')
-rw-r--r-- | usr.sbin/mopd/common/loop-bsd.c | 6 | ||||
-rw-r--r-- | usr.sbin/mopd/common/os.h | 6 | ||||
-rw-r--r-- | usr.sbin/mopd/common/pf.c | 6 |
3 files changed, 9 insertions, 9 deletions
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> |