aboutsummaryrefslogtreecommitdiffstats
path: root/src/tls/tls_server.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-01-19 20:02:07 +0000
committerlloyd <[email protected]>2012-01-19 20:02:07 +0000
commit4c3d3e1c56451c635fb81dadfb249ce1856af0ce (patch)
treef641c31dfbcf9badeac1dd5ae79eb28742fd0c68 /src/tls/tls_server.cpp
parent385febfc3c150450d231f9550ac5e33f5316751f (diff)
Various and sundry bug fixes
Diffstat (limited to 'src/tls/tls_server.cpp')
-rw-r--r--src/tls/tls_server.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tls/tls_server.cpp b/src/tls/tls_server.cpp
index e3e2fe208..503d55610 100644
--- a/src/tls/tls_server.cpp
+++ b/src/tls/tls_server.cpp
@@ -25,7 +25,7 @@ Version_Code choose_version(Version_Code client, Version_Code minimum)
throw TLS_Exception(PROTOCOL_VERSION,
"Client version is unacceptable by policy");
- if(client == SSL_V3 || client == TLS_V10 || client == TLS_V11)
+ if(client == SSL_V3 || client == TLS_V10 || client == TLS_V11 || client == TLS_V12)
return client;
return TLS_V11;
}