Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 62698da

Browse files
committed
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).
1 parent 1b031ae commit 62698da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/port/crypt.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ static int des_cipher(const char *in, char *out, long salt, int num_iter);
8787
* define "B64" to be the declaration for a 64 bit integer.
8888
* XXX this feature is currently unused, see "endian" comment below.
8989
*/
90-
#define B64 __int64
90+
/* #define B64 int64 */
9191

9292
/*
9393
* define "LARGEDATA" to get faster permutations, by using about 72 kilobytes

0 commit comments

Comments
 (0)