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:32:35 UTC

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

dougm       02/04/02 13:32:35

  Modified:    modules/ssl ssl_engine_config.c
  Log:
  fix copy-n-pasto: ssl_cmd_SSLProxyCACertificatePath needs to use
  ssl_cmd_check_dir rather than ssl_cmd_check_file
  
  Revision  Changes    Path
  1.65      +1 -1      httpd-2.0/modules/ssl/ssl_engine_config.c
  
  Index: ssl_engine_config.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/ssl/ssl_engine_config.c,v
  retrieving revision 1.64
  retrieving revision 1.65
  diff -u -r1.64 -r1.65
  --- ssl_engine_config.c	30 Mar 2002 06:46:24 -0000	1.64
  +++ ssl_engine_config.c	2 Apr 2002 21:32:35 -0000	1.65
  @@ -1345,7 +1345,7 @@
       SSLSrvConfigRec *sc = mySrvConfig(cmd->server);
       const char *err;
   
  -    if ((err = ssl_cmd_check_file(cmd, &arg))) {
  +    if ((err = ssl_cmd_check_dir(cmd, &arg))) {
           return err;
       }