aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tls/tls_server.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tls/tls_server.cpp b/src/tls/tls_server.cpp
index bc8ce5e31..a22e6854e 100644
--- a/src/tls/tls_server.cpp
+++ b/src/tls/tls_server.cpp
@@ -57,14 +57,14 @@ bool check_for_resume(TLS_Session_Params& session_info,
session_info.compression_method()))
return false;
- // client send a different SRP identity (!!!)
+ // client sent a different SRP identity (!!!)
if(client_hello->srp_identifier() != "")
{
if(client_hello->srp_identifier() != session_info.srp_identifier())
return false;
}
- // client send a different SNI hostname (!!!)
+ // client sent a different SNI hostname (!!!)
if(client_hello->sni_hostname() != "")
{
if(client_hello->sni_hostname() != session_info.sni_hostname())