mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
Fix improper defines for uid_t and gid_t. Had them backwards.
This commit is contained in:
parent
a95a82e7f0
commit
aa20badeaf
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user