Hi,

On Tue, 2013-10-08 at 02:07 +0000, Michael Wallner wrote:
> 
> Log:
> DNS name comparison is now case insensitive.
 
> -       if (strcmp(subjectname, certname) == 0) {
> +       if (strcasecmp(subjectname, certname) == 0) { 

Shouldn't that use an non-locale-dependent (ASCII based) comparison?
Else we get into trouble with the famous tolower(toupper('i')) != 'i'
issue in Turkish locales.

johannes



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to