summaryrefslogtreecommitdiff
path: root/usr.sbin/mopd/common/pf.c
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 /usr.sbin/mopd/common/pf.c
parenta40dd2fb1f521296ac73e77e22f23bdb19b2ec66 (diff)
#include <string.h> not <strings.h> -- Yes, I'm a weanie...
Diffstat (limited to 'usr.sbin/mopd/common/pf.c')
-rw-r--r--usr.sbin/mopd/common/pf.c6
1 files changed, 3 insertions, 3 deletions
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>