You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2002/12/23 10:09:21 UTC

cvs commit: httpd-2.0/modules/ssl ssl_engine_init.c ssl_util_ssl.c

wrowe       2002/12/23 01:09:21

  Modified:    modules/ssl ssl_engine_init.c ssl_util_ssl.c
  Log:
    All we care about is the type and name, just ask for the type and name.
  
  Revision  Changes    Path
  1.108     +1 -1      httpd-2.0/modules/ssl/ssl_engine_init.c
  
  Index: ssl_engine_init.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/ssl/ssl_engine_init.c,v
  retrieving revision 1.107
  retrieving revision 1.108
  diff -u -r1.107 -r1.108
  --- ssl_engine_init.c	14 Dec 2002 07:46:45 -0000	1.107
  +++ ssl_engine_init.c	23 Dec 2002 09:09:21 -0000	1.108
  @@ -1148,7 +1148,7 @@
       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.24      +1 -1      httpd-2.0/modules/ssl/ssl_util_ssl.c
  
  Index: ssl_util_ssl.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/ssl/ssl_util_ssl.c,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- ssl_util_ssl.c	25 Oct 2002 22:03:52 -0000	1.23
  +++ ssl_util_ssl.c	23 Dec 2002 09:09:21 -0000	1.24
  @@ -454,7 +454,7 @@
        */
       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;