Make bn2dec work on "SIXTY_FOUR_BIT" platforms.
authorAndy Polyakov <appro@openssl.org>
Sat, 15 Sep 2007 17:05:11 +0000 (17:05 +0000)
committerAndy Polyakov <appro@openssl.org>
Sat, 15 Sep 2007 17:05:11 +0000 (17:05 +0000)
PR: 1456

crypto/bio/b_print.c

index b2d6f26f2e1f223a0a709b30862ab4ec1d3a481a..143a7cfefa37e201bc5bd11d53fac7cd23dff17f 100644 (file)
@@ -79,7 +79,7 @@
 #include <openssl/bn.h>         /* To get BN_LLONG properly defined */
 #include <openssl/bio.h>
 
-#ifdef BN_LLONG
+#if defined(BN_LLONG) || defined(SIXTY_FOUR_BIT)
 # ifndef HAVE_LONG_LONG
 #  define HAVE_LONG_LONG 1
 # endif
 #endif
 
 #ifdef HAVE_LONG_LONG
-# if defined(OPENSSL_SYS_WIN32) && !defined(__GNUC__)
-# define LLONG _int64
+# if defined(_WIN32) && !defined(__GNUC__)
+# define LLONG __int64
 # else
 # define LLONG long long
 # endif