diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-01-23 21:49:39 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-01-23 21:49:39 +0000 |
commit | f6f43e7ee33696191d11014028b08d03bb8ab778 (patch) | |
tree | c5546431887c5bcd7d082adcc1579fb71125b168 /src | |
parent | 19b1c76f0d4d9cc3c5293e94406090e3c52b6bcf (diff) | |
download | postgresql-f6f43e7ee33696191d11014028b08d03bb8ab778.tar.gz postgresql-f6f43e7ee33696191d11014028b08d03bb8ab778.zip |
Prototype fix for typo.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/adt/network.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/adt/network.c b/src/backend/utils/adt/network.c index 95939873bc6..567a7cc2ee5 100644 --- a/src/backend/utils/adt/network.c +++ b/src/backend/utils/adt/network.c @@ -1,7 +1,7 @@ /* * PostgreSQL type definitions for the INET and CIDR types. * - * $PostgreSQL: pgsql/src/backend/utils/adt/network.c,v 1.59 2006/01/23 21:45:47 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/utils/adt/network.c,v 1.60 2006/01/23 21:49:39 momjian Exp $ * * Jon Postel RIP 16 Oct 1998 */ @@ -22,7 +22,7 @@ #include "utils/inet.h" -static Datum text_network(text *src, int is_cidr); +static Datum text_network(text *src, bool is_cidr); static int32 network_cmp_internal(inet *a1, inet *a2); static int bitncmp(void *l, void *r, int n); static bool addressOK(unsigned char *a, int bits, int family); |