From 4662790f1f59a3e006c471433e33b073f38f7cd9 Mon Sep 17 00:00:00 2001 From: Bradley Nicholes Date: Wed, 9 Jun 2004 21:54:50 +0000 Subject: [PATCH] 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 --- modules/experimental/util_ldap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.40.0