Skip to content
Snippets Groups Projects
Commit d82d018f authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

add an RFC 2849 check... but behind #if 0 as I'm now thinking this

is not appropriate.
parent 96483c8d
No related branches found
No related tags found
No related merge requests found
......@@ -940,6 +940,15 @@ ldap_pvt_tls_check_hostname( void *s, const char *name_in )
{
break;
}
#if 0
/* Is this a RFC 2549 style wildcard match? */
if ((*sn == '.') && domain && (len2 == sl) &&
!strncasecmp(domain, sn, len2))
{
break;
}
#endif
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment