projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a95a82e
)
Fix improper defines for uid_t and gid_t. Had them backwards.
author
Bruce Momjian
<bruce@momjian.us>
Wed, 6 Oct 2004 17:47:53 +0000
(17:47 +0000)
committer
Bruce Momjian
<bruce@momjian.us>
Wed, 6 Oct 2004 17:47:53 +0000
(17:47 +0000)
src/include/port/win32.h
patch
|
blob
|
blame
|
history
diff --git
a/src/include/port/win32.h
b/src/include/port/win32.h
index 8f4e00e2adca99e64cba9c4c9a44b120ab20c91a..7960879dafa2825cc84344c8d235bda6a067b125 100644
(file)
--- 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.3
8 2004/10/06 16:36:02
momjian Exp $ */
+/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.3
9 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;