add htonl()
authorkstailey <kstailey@openbsd.org>
Thu, 3 Apr 1997 02:12:57 +0000 (02:12 +0000)
committerkstailey <kstailey@openbsd.org>
Thu, 3 Apr 1997 02:12:57 +0000 (02:12 +0000)
lib/libc/net/getnetent.c

index 8c3ced2..f37f254 100644 (file)
@@ -32,7 +32,7 @@
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: getnetent.c,v 1.5 1996/09/03 07:27:45 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: getnetent.c,v 1.6 1997/04/03 02:12:57 kstailey 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 = inet_network(cp);
+       net.n_net = htonl(inet_network(cp));
        net.n_addrtype = AF_INET;
        q = net.n_aliases = net_aliases;
        if (p != NULL)