mirror of
https://github.com/postgres/postgres.git
synced 2026-03-27 21:03:14 -04:00
Suppress dead, unportable src/port/crypt.c code.
This file used __int64, which is specific to native Windows, rather than int64. Suppress the long-unused union field of this type. Noticed on Cygwin x86_64 with -lcrypt not installed. Back-patch to 9.0 (all supported versions).
This commit is contained in:
parent
1b031ae62e
commit
62698dae6b
1 changed files with 1 additions and 1 deletions
|
|
@ -87,7 +87,7 @@ static int des_cipher(const char *in, char *out, long salt, int num_iter);
|
|||
* define "B64" to be the declaration for a 64 bit integer.
|
||||
* XXX this feature is currently unused, see "endian" comment below.
|
||||
*/
|
||||
#define B64 __int64
|
||||
/* #define B64 int64 */
|
||||
|
||||
/*
|
||||
* define "LARGEDATA" to get faster permutations, by using about 72 kilobytes
|
||||
|
|
|
|||
Loading…
Reference in a new issue