You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by do...@apache.org on 2002/04/02 23:57:32 UTC

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

dougm       02/04/02 13:57:31

  Modified:    modules/ssl ssl_engine_init.c
  Log:
  copy-n-pasto: need to use SSL_X509_INFO_load_*path* on pkp->cert_path
  
  Revision  Changes    Path
  1.94      +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.93
  retrieving revision 1.94
  diff -u -r1.93 -r1.94
  --- ssl_engine_init.c	30 Mar 2002 06:20:16 -0000	1.93
  +++ ssl_engine_init.c	2 Apr 2002 21:57:31 -0000	1.94
  @@ -917,7 +917,7 @@
       }
   
       if (pkp->cert_path) {
  -        SSL_X509_INFO_load_file(ptemp, sk, pkp->cert_path);
  +        SSL_X509_INFO_load_path(ptemp, sk, pkp->cert_path);
       }
   
       if ((ncerts = sk_X509_INFO_num(sk)) > 0) {