aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlloyd <[email protected]>2011-12-28 18:37:25 +0000
committerlloyd <[email protected]>2011-12-28 18:37:25 +0000
commit6a4404fe9e0cd7b16730131476e2d99ebcc7d7be (patch)
treecbe535c0bd321c8cdb423b4856b3e4fbbed8baf4 /src
parent95e64ed92bb663705bca57ca4d5fa6dde703ed98 (diff)
Comment grammar
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())