From: Bruce Momjian <bruce@momjian.us>
Date: Wed, 6 Oct 2004 17:47:53 +0000 (+0000)
Subject: Fix improper defines for uid_t and gid_t.  Had them backwards.
X-Git-Tag: REL8_0_0BETA4~187
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aa20badeaf444a62bc9a49c94e97c7a51be173e3;p=postgresql

Fix improper defines for uid_t and gid_t.  Had them backwards.
---

diff --git a/src/include/port/win32.h b/src/include/port/win32.h
index 8f4e00e2ad..7960879daf 100644
--- a/src/include/port/win32.h
+++ b/src/include/port/win32.h
@@ -1,4 +1,4 @@
-/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.38 2004/10/06 16:36:02 momjian Exp $ */
+/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.39 2004/10/06 17:47:53 momjian Exp $ */
 
 /* undefine and redefine after #include */
 #undef mkdir
@@ -202,8 +202,8 @@ typedef int uid_t;
 typedef int gid_t;
 #else
 /* These are redefined by perl. */
-#define int uid_t;
-#define int gid_t;
+#define uid_t int
+#define gid_t int
 #endif
 typedef long key_t;