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: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ba9635fd60b895cee44ee9a81d2930cc20d8c57;p=thirdparty%2Fapache%2Fhttpd.git 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/modules/ssl@98090 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/ssl_engine_init.c b/ssl_engine_init.c index 99428bfa8b1..402ce0cbf4b 100644 --- a/ssl_engine_init.c +++ b/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/ssl_util_ssl.c b/ssl_util_ssl.c index 8da25124cfe..a9a1aaebd89 100644 --- a/ssl_util_ssl.c +++ b/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;