[tor-commits] [tor/maint-0.2.1] Fix a compilation warning for our bug4822 fix on 64-bit linux

nickm at torproject.org nickm at torproject.org
Wed Jan 11 16:06:44 UTC 2012


commit 8d5c0e58ea19fa1bc662c23e1a7ae77d688400fc
Author: Nick Mathewson <nickm at torproject.org>
Date:   Wed Jan 11 11:06:31 2012 -0500

    Fix a compilation warning for our bug4822 fix on 64-bit linux
---
 src/common/tortls.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/common/tortls.c b/src/common/tortls.c
index d88a59b..e624183 100644
--- a/src/common/tortls.c
+++ b/src/common/tortls.c
@@ -775,8 +775,8 @@ tor_tls_context_new(crypto_pk_env_t *identity, unsigned int key_lifetime,
              "might otherwise be vulnerable to CVE-2011-4657 "
              "(compile-time version %08lx (%s); "
              "runtime version %08lx (%s))",
-             OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_TEXT,
-             SSLeay(), SSLeay_version(SSLEAY_VERSION));
+             (unsigned long)OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_TEXT,
+             (unsigned long)SSLeay(), SSLeay_version(SSLEAY_VERSION));
     SSL_CTX_set_options(result->ctx, SSL_OP_NO_SSLv3);
   }
 



More information about the tor-commits mailing list