summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortholo <tholo@openbsd.org>1997-04-24 08:37:09 +0000
committertholo <tholo@openbsd.org>1997-04-24 08:37:09 +0000
commit13f60ddb346e7defd6b3f7e12e92396106093782 (patch)
treebe6530cee866d124ffd5850b8bd9b1aacb9606ad
parentPad out trailing parts of the address with zeros so we get a legal network (diff)
downloadwireguard-openbsd-13f60ddb346e7defd6b3f7e12e92396106093782.tar.xz
wireguard-openbsd-13f60ddb346e7defd6b3f7e12e92396106093782.zip
Revert last change
-rw-r--r--lib/libc/net/getnetent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/net/getnetent.c b/lib/libc/net/getnetent.c
index f37f2543ee7..e40fb50c0f6 100644
--- a/lib/libc/net/getnetent.c
+++ b/lib/libc/net/getnetent.c
@@ -32,7 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: getnetent.c,v 1.6 1997/04/03 02:12:57 kstailey Exp $";
+static char rcsid[] = "$OpenBSD: getnetent.c,v 1.7 1997/04/24 08:37:09 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
@@ -102,7 +102,7 @@ again:
p = strpbrk(cp, " \t");
if (p != NULL)
*p++ = '\0';
- net.n_net = htonl(inet_network(cp));
+ net.n_net = inet_network(cp);
net.n_addrtype = AF_INET;
q = net.n_aliases = net_aliases;
if (p != NULL)