summaryrefslogtreecommitdiffstats
path: root/daemons/ipa-kdb/ipa_kdb.h
diff options
context:
space:
mode:
authorSimo Sorce <ssorce@redhat.com>2012-07-09 09:15:51 -0400
committerSimo Sorce <ssorce@redhat.com>2012-08-02 11:27:52 -0400
commit560b9416f608ec5106b52fa56db3962b3542812c (patch)
treeba9db27e48d5ae29d63919a674e5b3bad39c7865 /daemons/ipa-kdb/ipa_kdb.h
parent8c7556db8339cf64f1c80e4ffec30ac3646f177e (diff)
downloadfreeipa-560b9416f608ec5106b52fa56db3962b3542812c.tar.gz
freeipa-560b9416f608ec5106b52fa56db3962b3542812c.tar.xz
freeipa-560b9416f608ec5106b52fa56db3962b3542812c.zip
Move mspac structure to be a private pointer
By keeping it's definition in the mspac file it is easier to modify and make sure any opertion on it is handled in the same file.
Diffstat (limited to 'daemons/ipa-kdb/ipa_kdb.h')
-rw-r--r--daemons/ipa-kdb/ipa_kdb.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/daemons/ipa-kdb/ipa_kdb.h b/daemons/ipa-kdb/ipa_kdb.h
index c1cc7a7d8..0a179dbcf 100644
--- a/daemons/ipa-kdb/ipa_kdb.h
+++ b/daemons/ipa-kdb/ipa_kdb.h
@@ -74,12 +74,7 @@
#define IPA_SETUP "ipa-setup-override-restrictions"
-struct ipadb_wincompat {
- char *flat_domain_name;
- char *flat_server_name;
- char *fallback_group;
- uint32_t fallback_rid;
-};
+struct ipadb_mspac;
struct ipadb_context {
char *uri;
@@ -91,7 +86,7 @@ struct ipadb_context {
bool override_restrictions;
krb5_key_salt_tuple *supp_encs;
int n_supp_encs;
- struct ipadb_wincompat wc;
+ struct ipadb_mspac *mspac;
bool disable_last_success;
bool disable_lockout;
};