From 0f9eaa555701d8d791a1c17bd6756a80bdc9c92b Mon Sep 17 00:00:00 2001 From: "Allan K. Edwards" Date: Tue, 9 May 2000 22:46:03 +0000 Subject: [PATCH] Get tree build to work correctly with config Include directive git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85172 13f79535-47bb-0310-9956-ffa450edef68 --- server/config.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server/config.c b/server/config.c index 7b9e70ce1d..bb4cbb5246 100644 --- a/server/config.c +++ b/server/config.c @@ -974,6 +974,9 @@ API_EXPORT(const char *) ap_build_config(configfile_t *cfp, if (errmsg != NULL) return errmsg; + if (*conftree == NULL && curr_parent != NULL) { + *conftree = curr_parent; + } if (*conftree == NULL && current != NULL) { *conftree = current; } -- 2.50.1