mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
add an RFC 2849 check... but behind #if 0 as I'm now thinking this
is not appropriate.
This commit is contained in:
parent
96483c8dcd
commit
d82d018f20
1 changed files with 9 additions and 0 deletions
|
|
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue