From: Doug MacEachern Date: Tue, 2 Apr 2002 21:32:35 +0000 (+0000) Subject: fix copy-n-pasto: ssl_cmd_SSLProxyCACertificatePath needs to use X-Git-Tag: 2.0.35~56 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=26a5b7fc7c3fdac303f2ad43668fc6e28c4581f2;p=apache fix copy-n-pasto: ssl_cmd_SSLProxyCACertificatePath needs to use ssl_cmd_check_dir rather than ssl_cmd_check_file git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94403 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_engine_config.c b/modules/ssl/ssl_engine_config.c index dba8a8b526..b2e531a6dd 100644 --- a/modules/ssl/ssl_engine_config.c +++ b/modules/ssl/ssl_engine_config.c @@ -1345,7 +1345,7 @@ const char *ssl_cmd_SSLProxyCACertificatePath(cmd_parms *cmd, 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; }