diff options
author | Bruce Momjian <bruce@momjian.us> | 2005-10-13 23:22:11 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2005-10-13 23:22:11 +0000 |
commit | 35c8983371d4ab651c2e7726f5456692ee9df0d9 (patch) | |
tree | 893804695d69c2465ce09910341cec578563e462 /src | |
parent | 186bbaab067b79378975be174f3fcfeb4620662a (diff) | |
download | postgresql-35c8983371d4ab651c2e7726f5456692ee9df0d9.tar.gz postgresql-35c8983371d4ab651c2e7726f5456692ee9df0d9.zip |
Fix uppercase TRUE/FALSE that are WIN32 stuffl.
Diffstat (limited to 'src')
-rw-r--r-- | src/port/getaddrinfo.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/port/getaddrinfo.c b/src/port/getaddrinfo.c index 1bdb60503b5..86b21b3af60 100644 --- a/src/port/getaddrinfo.c +++ b/src/port/getaddrinfo.c @@ -16,7 +16,7 @@ * Copyright (c) 2003-2005, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/getaddrinfo.c,v 1.19 2005/08/25 17:51:01 tgl Exp $ + * $PostgreSQL: pgsql/src/port/getaddrinfo.c,v 1.20 2005/10/13 23:22:11 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -68,7 +68,7 @@ static bool haveNativeWindowsIPv6routines(void) { void *hLibrary = NULL; - static bool alreadyLookedForIpv6routines = FALSE; + static bool alreadyLookedForIpv6routines = false; if (alreadyLookedForIpv6routines) return (getaddrinfo_ptr != NULL); @@ -126,7 +126,7 @@ haveNativeWindowsIPv6routines(void) } } - alreadyLookedForIpv6routines = TRUE; + alreadyLookedForIpv6routines = true; return (getaddrinfo_ptr != NULL); } |