From: Bradley Nicholes Date: Wed, 9 Jun 2004 21:54:50 +0000 (+0000) Subject: Allow relative paths for LDAPTrustedCA to be resolved against ServerRoot PR#26602 X-Git-Tag: pre_ajp_proxy~173 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4662790f1f59a3e006c471433e33b073f38f7cd9;p=apache Allow relative paths for LDAPTrustedCA to be resolved against ServerRoot PR#26602 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103877 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/experimental/util_ldap.c b/modules/experimental/util_ldap.c index e5a32e0f51..6493527880 100644 --- a/modules/experimental/util_ldap.c +++ b/modules/experimental/util_ldap.c @@ -1080,7 +1080,7 @@ static const char *util_ldap_set_cert_auth(cmd_parms *cmd, void *dummy, const ch "LDAP: SSL trusted certificate authority file - %s", file); - st->cert_auth_file = apr_pstrdup(cmd->pool, file); + st->cert_auth_file = ap_server_root_relative(cmd->pool, file); return(NULL); }