From: Bruce Momjian Date: Wed, 24 Feb 1999 03:17:05 +0000 (+0000) Subject: Thank you for the advice. I concluded that current inet code has a X-Git-Tag: REL6_5~584 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=02fa3e439429b5ff9d74bf76d5b94e2aff150667;p=postgresql Thank you for the advice. I concluded that current inet code has a portability problem. Included patches should be applied to both current and 6.4 tree. I have tested on LinuxPPC, FreeBSD and Solaris 2.6. Now the inet regression tests on these platforms are all happy. --- Tatsuo Ishii --- diff --git a/src/backend/utils/adt/network.c b/src/backend/utils/adt/network.c index bb2d9070e6..fbe087f7b3 100644 --- a/src/backend/utils/adt/network.c +++ b/src/backend/utils/adt/network.c @@ -3,7 +3,7 @@ * is for IP V4 CIDR notation, but prepared for V6: just * add the necessary bits where the comments indicate. * - * $Id: network.c,v 1.5 1999/01/01 04:17:13 momjian Exp $ + * $Id: network.c,v 1.6 1999/02/24 03:17:05 momjian Exp $ * Jon Postel RIP 16 Oct 1998 */ @@ -356,7 +356,12 @@ network_broadcast(inet *ip) if (ip_family(ip) == AF_INET) { /* It's an IP V4 address: */ - int addr = htonl(ntohl(ip_v4addr(ip)) | (0xffffffff >> ip_bits(ip))); + int addr; + unsigned long mask = 0xffffffff; + + if (ip_bits(ip) < 32) + mask >>= ip_bits(ip); + addr = htonl(ntohl(ip_v4addr(ip)) | mask); if (inet_net_ntop(AF_INET, &addr, 32, tmp, sizeof(tmp)) == NULL) {