Use case insensitive compare for servername.

PR#3445
This commit is contained in:
Dr. Stephen Henson 2014-07-14 23:59:13 +01:00
parent 7efd0e777e
commit 1c3e9a7c67

View File

@ -740,7 +740,7 @@ static int MS_CALLBACK ssl_servername_cb(SSL *s, int *ad, void *arg)
if (servername)
{
if (strcmp(servername,p->servername))
if (strcasecmp(servername,p->servername))
return p->extension_error;
if (ctx2)
{