diff options
author | Bruce Momjian | 2005-10-13 23:22:11 +0000 |
---|---|---|
committer | Bruce Momjian | 2005-10-13 23:22:11 +0000 |
commit | cda159438386346bf51dedb7ca1756ce7d6b1679 (patch) | |
tree | e73450549c5a6b81fcc5630defbfd243cf294ebb | |
parent | 9a4514f4c712a19cbb139627f573b435de5df1db (diff) |
Fix uppercase TRUE/FALSE that are WIN32 stuffl.
-rw-r--r-- | src/port/getaddrinfo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/port/getaddrinfo.c b/src/port/getaddrinfo.c index d5172418a2..02102be96b 100644 --- a/src/port/getaddrinfo.c +++ b/src/port/getaddrinfo.c @@ -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); } |