mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
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
This commit is contained in:
@@ -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) {
|
||||
|
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user