Commit 3ba9635f authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

  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
parent 10b12bab
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) {
+1 −1
Original line number Diff line number Diff line
@@ -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;