summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2015-03-08 17:31:48 +0000
committerDr. Stephen Henson <steve@openssl.org>2015-03-08 22:42:23 +0000
commita67303954caa923e8bf2f2bdf04882e9cbc45cc1 (patch)
tree1bff78aabcb8a464fec9c14d9b17617049fa2309
parentcb9d5b7b53d3e781c2110e2c4b8f9530ce312eb8 (diff)
downloadopenssl-new-a67303954caa923e8bf2f2bdf04882e9cbc45cc1.tar.gz
fix warning
Reviewed-by: Richard Levitte <levitte@openssl.org> (cherry picked from commit d6ca1cee8b6efac5906ac66443d1ca67fe689ff8)
-rw-r--r--ssl/ssl_locl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ssl/ssl_locl.h b/ssl/ssl_locl.h
index 4c8df3cf6f..aff3b65d17 100644
--- a/ssl/ssl_locl.h
+++ b/ssl/ssl_locl.h
@@ -369,10 +369,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) */