diff options
author | Simo Sorce <simo@redhat.com> | 2012-07-19 17:40:40 -0400 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2012-08-01 22:24:43 +0200 |
commit | b58460076fe843c11d736ae244c1ac979a6473a4 (patch) | |
tree | 106247ee877ea5ac564d7e5b8595f09039134a6d /src/db/sysdb.h | |
parent | 6ea6ec5cb7d9985e2730fb9d4657624d10aed4d8 (diff) | |
download | sssd-b58460076fe843c11d736ae244c1ac979a6473a4.tar.gz sssd-b58460076fe843c11d736ae244c1ac979a6473a4.tar.xz sssd-b58460076fe843c11d736ae244c1ac979a6473a4.zip |
Change subdomain_info
Rename the structure to use a standard name prefix so it is properly
name-spaced, in preparation for changing the structure itself.
Diffstat (limited to 'src/db/sysdb.h')
-rw-r--r-- | src/db/sysdb.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/db/sysdb.h b/src/db/sysdb.h index 3c6166cf4..20641a753 100644 --- a/src/db/sysdb.h +++ b/src/db/sysdb.h @@ -240,7 +240,7 @@ struct sysdb_attrs { /* sysdb_attrs helper functions */ struct sysdb_attrs *sysdb_new_attrs(TALLOC_CTX *mem_ctx); -struct subdomain_info { +struct sysdb_subdom { char *name; char *flat_name; char *id; @@ -364,12 +364,12 @@ int sysdb_transaction_cancel(struct sysdb_ctx *sysdb); errno_t sysdb_get_subdomains(TALLOC_CTX *mem_ctx, struct sysdb_ctx *sysdb, size_t *subdomain_count, - struct subdomain_info ***subdomain_list); + struct sysdb_subdom ***subdomain_list); errno_t sysdb_domain_create(struct sysdb_ctx *sysdb, const char *domain_name); errno_t sysdb_update_subdomains(struct sysdb_ctx *sysdb, - struct subdomain_info **subdomains); + struct sysdb_subdom **subdomains); errno_t sysdb_get_subdomain_context(TALLOC_CTX *mem_ctx, struct sysdb_ctx *sysdb, @@ -378,10 +378,10 @@ errno_t sysdb_get_subdomain_context(TALLOC_CTX *mem_ctx, errno_t sysdb_master_domain_get_info(TALLOC_CTX *mem_ctx, struct sysdb_ctx *sysdb, - struct subdomain_info **info); + struct sysdb_subdom **info); errno_t sysdb_master_domain_add_info(struct sysdb_ctx *sysdb, - struct subdomain_info *domain_info); + struct sysdb_subdom *domain_info); errno_t sysdb_search_domuser_by_name(TALLOC_CTX *mem_ctx, |