Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 10578 invoked from network); 9 Jun 2004 21:54:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 9 Jun 2004 21:54:53 -0000 Received: (qmail 85524 invoked by uid 500); 9 Jun 2004 21:55:12 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 85494 invoked by uid 500); 9 Jun 2004 21:55:11 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 85470 invoked by uid 500); 9 Jun 2004 21:55:11 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Received: (qmail 85426 invoked by uid 99); 9 Jun 2004 21:55:11 -0000 Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.27.1) with SMTP; Wed, 09 Jun 2004 14:55:11 -0700 Received: (qmail 10525 invoked by uid 1285); 9 Jun 2004 21:54:50 -0000 Date: 9 Jun 2004 21:54:50 -0000 Message-ID: <20040609215450.10524.qmail@minotaur.apache.org> From: bnicholes@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/modules/experimental util_ldap.c X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N bnicholes 2004/06/09 14:54:50 Modified: modules/experimental util_ldap.c Log: Allow relative paths for LDAPTrustedCA to be resolved against ServerRoot PR#26602 Revision Changes Path 1.31 +1 -1 httpd-2.0/modules/experimental/util_ldap.c Index: util_ldap.c =================================================================== RCS file: /home/cvs/httpd-2.0/modules/experimental/util_ldap.c,v retrieving revision 1.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- util_ldap.c 26 May 2004 11:48:19 -0000 1.30 +++ util_ldap.c 9 Jun 2004 21:54:50 -0000 1.31 @@ -1080,7 +1080,7 @@ "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); }