diff options
author | Simo Sorce <simo@redhat.com> | 2013-01-06 01:10:36 -0500 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-01-15 10:49:19 +0100 |
commit | f2ce4a4a45bfc0c9ba6d1a13348494dd4c49d4fb (patch) | |
tree | c7909e65505802bcac063ae3ba5a966e6573b300 /src | |
parent | e3ce042be3a6c66aa720fc139f557b065ae6dc5e (diff) | |
download | sssd-f2ce4a4a45bfc0c9ba6d1a13348494dd4c49d4fb.tar.gz sssd-f2ce4a4a45bfc0c9ba6d1a13348494dd4c49d4fb.tar.xz sssd-f2ce4a4a45bfc0c9ba6d1a13348494dd4c49d4fb.zip |
The Big sysdb/domain split-up!
This commit is the first of a complex work of untangling domain and sysdb.
It turns out the idea of keeping a reference to the domain within the sysdb was
a poor one so we need to split the domain out and change all functions that
needs one to get it explicitly from their callers.
Diffstat (limited to 'src')
-rw-r--r-- | src/db/sysdb_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/db/sysdb_private.h b/src/db/sysdb_private.h index a2af8b93f..4763f03f4 100644 --- a/src/db/sysdb_private.h +++ b/src/db/sysdb_private.h @@ -79,7 +79,7 @@ #include "db/sysdb.h" struct sysdb_ctx { - struct sss_domain_info *domain; + struct sss_domain_info *domain; /* *DEPRECATED*, do not use! */ bool mpg; struct ldb_context *ldb; |