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/common/pf.c | |
parent | a40dd2fb1f521296ac73e77e22f23bdb19b2ec66 (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.c | 6 |
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> |