AppleTLS: even more correctly define kTLSProtocol13

Yes, again
pull/1477/head
Nils Maier 2019-10-06 13:36:08 +02:00
parent a184ceb9e2
commit 53b3169a22
1 changed files with 3 additions and 3 deletions

View File

@ -53,12 +53,12 @@
namespace { namespace {
#if !defined(__MAC_10_8) #if !defined(__MAC_10_8)
static const SSLProtocol kTLSProtocol11 = 7; static const SSLProtocol kTLSProtocol11 = (SSLProtocol)7;
static const SSLProtocol kTLSProtocol12 = 8; static const SSLProtocol kTLSProtocol12 = (SSLProtocol)8;
#endif #endif
#if !defined(__MAC_10_13) #if !defined(__MAC_10_13)
static const SSLProtocol kTLSProtocol13 = 10; static const SSLProtocol kTLSProtocol13 = (SSLProtocol)10;
#endif #endif
#ifndef CIPHER_NO_DHPARAM #ifndef CIPHER_NO_DHPARAM