Skip to content

Commit 35c8983

Browse files
committed
Fix uppercase TRUE/FALSE that are WIN32 stuffl.
1 parent 186bbaa commit 35c8983

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/port/getaddrinfo.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* Copyright (c) 2003-2005, PostgreSQL Global Development Group
1717
*
1818
* IDENTIFICATION
19-
* $PostgreSQL: pgsql/src/port/getaddrinfo.c,v 1.19 2005/08/25 17:51:01 tgl Exp $
19+
* $PostgreSQL: pgsql/src/port/getaddrinfo.c,v 1.20 2005/10/13 23:22:11 momjian Exp $
2020
*
2121
*-------------------------------------------------------------------------
2222
*/
@@ -68,7 +68,7 @@ static bool
6868
haveNativeWindowsIPv6routines(void)
6969
{
7070
void *hLibrary = NULL;
71-
static bool alreadyLookedForIpv6routines = FALSE;
71+
static bool alreadyLookedForIpv6routines = false;
7272

7373
if (alreadyLookedForIpv6routines)
7474
return (getaddrinfo_ptr != NULL);
@@ -126,7 +126,7 @@ haveNativeWindowsIPv6routines(void)
126126
}
127127
}
128128

129-
alreadyLookedForIpv6routines = TRUE;
129+
alreadyLookedForIpv6routines = true;
130130
return (getaddrinfo_ptr != NULL);
131131
}
132132

0 commit comments

Comments
 (0)