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

REL8_0_STABLE
Bruce Momjian 21 years ago
parent a95a82e7f0
commit aa20badeaf
  1. 6
      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;

Loading…
Cancel
Save