]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Changes for deprecated apr_is_fnmatch
authorWilliam A. Rowe Jr <wrowe@apache.org>
Mon, 8 Jul 2002 17:43:34 +0000 (17:43 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Mon, 8 Jul 2002 17:43:34 +0000 (17:43 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@95976 13f79535-47bb-0310-9956-ffa450edef68

ssl_engine_init.c

index 2203210db7ee30b4d269e7ddc3dc5b3a761153cb..bf63baf4c1ad510d529ab2c3605757de79cccefb 100644 (file)
@@ -857,7 +857,7 @@ static void ssl_check_public_cert(server_rec *s,
     if (SSL_X509_getCN(ptemp, cert, &cn)) {
         int fnm_flags = FNM_PERIOD|FNM_CASE_BLIND;
 
-        if (apr_is_fnmatch(cn) &&
+        if (apr_fnmatch_test(cn) &&
             (apr_fnmatch(cn, s->server_hostname,
                          fnm_flags) == FNM_NOMATCH))
         {