summaryrefslogtreecommitdiffstats
path: root/src/confdb
diff options
context:
space:
mode:
Diffstat (limited to 'src/confdb')
-rw-r--r--src/confdb/confdb.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/confdb/confdb.h b/src/confdb/confdb.h
index 25b8fe8d3..801a13fc2 100644
--- a/src/confdb/confdb.h
+++ b/src/confdb/confdb.h
@@ -259,7 +259,6 @@ struct sss_domain_info {
char *realm;
char *flat_name;
char *domain_id;
- char *forest;
uint32_t trust_direction;
struct timeval subdomains_last_checked;
@@ -271,6 +270,12 @@ struct sss_domain_info {
bool disabled;
char **sd_inherit;
+
+ /* Do not use the forest pointer directly in new code, but rather the
+ * forest_root pointer. sss_domain_info will be more opaque in the future
+ */
+ char *forest;
+ struct sss_domain_info *forest_root;
};
/**