[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Dr. Stephen Henson
steve at openssl.org
Sun Mar 8 22:41:27 UTC 2015
The branch OpenSSL_1_0_2-stable has been updated
via d6ca1cee8b6efac5906ac66443d1ca67fe689ff8 (commit)
from bfa34f551c2d38e826deb44a269cb0f720f9f63b (commit)
- Log -----------------------------------------------------------------
commit d6ca1cee8b6efac5906ac66443d1ca67fe689ff8
Author: Dr. Stephen Henson <steve at openssl.org>
Date: Sun Mar 8 17:31:48 2015 +0000
fix warning
Reviewed-by: Richard Levitte <levitte at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
ssl/ssl_locl.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/ssl/ssl_locl.h b/ssl/ssl_locl.h
index 46ea18a..79b85b9 100644
--- a/ssl/ssl_locl.h
+++ b/ssl/ssl_locl.h
@@ -370,10 +370,10 @@
# define SSL_AEAD 0x00000040L
/* Bits for algorithm_ssl (protocol version) */
-# define SSL_SSLV2 0x00000001L
-# define SSL_SSLV3 0x00000002L
+# define SSL_SSLV2 0x00000001UL
+# define SSL_SSLV3 0x00000002UL
# define SSL_TLSV1 SSL_SSLV3/* for now */
-# define SSL_TLSV1_2 0x00000004L
+# define SSL_TLSV1_2 0x00000004UL
/* Bits for algorithm2 (handshake digests and other extra flags) */
More information about the openssl-commits
mailing list