From: William A. Rowe Jr Date: Mon, 23 Dec 2002 09:09:21 +0000 (+0000) Subject: All we care about is the type and name, just ask for the type and name. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1179e56cba88c1b3b8f420a59aba665064deab37;p=apache All we care about is the type and name, just ask for the type and name. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98090 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_engine_init.c b/modules/ssl/ssl_engine_init.c index 99428bfa8b..402ce0cbf4 100644 --- a/modules/ssl/ssl_engine_init.c +++ b/modules/ssl/ssl_engine_init.c @@ -1148,7 +1148,7 @@ STACK_OF(X509_NAME) *ssl_init_FindCAList(server_rec *s, if (ca_path) { apr_dir_t *dir; apr_finfo_t direntry; - apr_int32_t finfo_flags = APR_FINFO_MIN|APR_FINFO_NAME; + apr_int32_t finfo_flags = APR_FINFO_TYPE|APR_FINFO_NAME; apr_status_t rv; if ((rv = apr_dir_open(&dir, ca_path, ptemp)) != APR_SUCCESS) { diff --git a/modules/ssl/ssl_util_ssl.c b/modules/ssl/ssl_util_ssl.c index 8da25124cf..a9a1aaebd8 100644 --- a/modules/ssl/ssl_util_ssl.c +++ b/modules/ssl/ssl_util_ssl.c @@ -454,7 +454,7 @@ BOOL SSL_X509_INFO_load_path(apr_pool_t *ptemp, */ apr_dir_t *dir; apr_finfo_t dirent; - apr_int32_t finfo_flags = APR_FINFO_MIN|APR_FINFO_NAME; + apr_int32_t finfo_flags = APR_FINFO_TYPE|APR_FINFO_NAME; const char *fullname; BOOL ok = FALSE;