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/ypserv/revnetgroup/parse_netgroup.c | |
parent | a40dd2fb1f521296ac73e77e22f23bdb19b2ec66 (diff) |
#include <string.h> not <strings.h> -- Yes, I'm a weanie...
Diffstat (limited to 'usr.sbin/ypserv/revnetgroup/parse_netgroup.c')
-rw-r--r-- | usr.sbin/ypserv/revnetgroup/parse_netgroup.c | 6 |
1 files changed, 3 insertions, 3 deletions
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 /* |