Skip to content
Snippets Groups Projects
Commit 35c89833 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Fix uppercase TRUE/FALSE that are WIN32 stuffl.

parent 186bbaab
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
* Copyright (c) 2003-2005, PostgreSQL Global Development Group * Copyright (c) 2003-2005, PostgreSQL Global Development Group
* *
* IDENTIFICATION * 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 ...@@ -68,7 +68,7 @@ static bool
haveNativeWindowsIPv6routines(void) haveNativeWindowsIPv6routines(void)
{ {
void *hLibrary = NULL; void *hLibrary = NULL;
static bool alreadyLookedForIpv6routines = FALSE; static bool alreadyLookedForIpv6routines = false;
if (alreadyLookedForIpv6routines) if (alreadyLookedForIpv6routines)
return (getaddrinfo_ptr != NULL); return (getaddrinfo_ptr != NULL);
...@@ -126,7 +126,7 @@ haveNativeWindowsIPv6routines(void) ...@@ -126,7 +126,7 @@ haveNativeWindowsIPv6routines(void)
} }
} }
alreadyLookedForIpv6routines = TRUE; alreadyLookedForIpv6routines = true;
return (getaddrinfo_ptr != NULL); return (getaddrinfo_ptr != NULL);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment