diff options
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/net/getnetbynis.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/net/getnetbynis.c b/lib/libc/net/getnetbynis.c index 7c256e0..44f2066 100644 --- a/lib/libc/net/getnetbynis.c +++ b/lib/libc/net/getnetbynis.c @@ -24,8 +24,8 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)$Id: getnetbynis.c,v 1.5 1996/03/23 22:16:22 wpaul Exp $"; -static char rcsid[] = "$Id: getnetbynis.c,v 1.5 1996/03/23 22:16:22 wpaul Exp $"; +static char sccsid[] = "@(#)$Id: getnetbynis.c,v 1.6 1996/08/29 20:08:01 peter Exp $"; +static char rcsid[] = "$Id: getnetbynis.c,v 1.6 1996/08/29 20:08:01 peter Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/param.h> @@ -125,7 +125,7 @@ struct netent * _getnetbynisname(name) const char *name; { - return _getnetbynis(name, "networks.byname"); + return _getnetbynis(name, "networks.byname", AF_INET); } struct netent * |