diff options
author | Thomas G. Lockhart <lockhart@fourpalms.org> | 1999-04-15 02:20:50 +0000 |
---|---|---|
committer | Thomas G. Lockhart <lockhart@fourpalms.org> | 1999-04-15 02:20:50 +0000 |
commit | 64e74e30b51ba626edf4cd0147a3ff7f98469e69 (patch) | |
tree | 75da36769de0247069b20f5aaeaf53c6f2ea5885 | |
parent | e1a4ddeda84c94b60e288f27db6d7a9b8dcefbd2 (diff) | |
download | postgresql-64e74e30b51ba626edf4cd0147a3ff7f98469e69.tar.gz postgresql-64e74e30b51ba626edf4cd0147a3ff7f98469e69.zip |
Fix boolean assignment of return values to use "FALSE" rather than the
mis-copied "NULL", which happens to have the same binary value.
Previously, gcc gave non-fatal warnings.
-rw-r--r-- | src/backend/utils/adt/network.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/utils/adt/network.c b/src/backend/utils/adt/network.c index 5c0e4a18f6b..12f28ccce76 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.7 1999/03/22 05:00:57 momjian Exp $ + * $Id: network.c,v 1.8 1999/04/15 02:20:50 thomas Exp $ * Jon Postel RIP 16 Oct 1998 */ @@ -221,7 +221,7 @@ bool network_sub(inet *a1, inet *a2) { if (!PointerIsValid(a1) || !PointerIsValid(a2)) - return NULL; + return FALSE; if ((ip_family(a1) == AF_INET) && (ip_family(a2) == AF_INET)) { @@ -241,7 +241,7 @@ bool network_subeq(inet *a1, inet *a2) { if (!PointerIsValid(a1) || !PointerIsValid(a2)) - return NULL; + return FALSE; if ((ip_family(a1) == AF_INET) && (ip_family(a2) == AF_INET)) { @@ -261,7 +261,7 @@ bool network_sup(inet *a1, inet *a2) { if (!PointerIsValid(a1) || !PointerIsValid(a2)) - return NULL; + return FALSE; if ((ip_family(a1) == AF_INET) && (ip_family(a2) == AF_INET)) { @@ -281,7 +281,7 @@ bool network_supeq(inet *a1, inet *a2) { if (!PointerIsValid(a1) || !PointerIsValid(a2)) - return NULL; + return FALSE; if ((ip_family(a1) == AF_INET) && (ip_family(a2) == AF_INET)) { |