From 99c0cfdc5f065ba38f1ee91701d1d27f9e4fdb96 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 7 Jan 2013 20:10:42 -0500 Subject: Add domain argument to sysdb_store_group() Also remove sysdb_store_domgroup() --- src/db/sysdb.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'src/db/sysdb.h') diff --git a/src/db/sysdb.h b/src/db/sysdb.h index 4e11fbe56..a3184beef 100644 --- a/src/db/sysdb.h +++ b/src/db/sysdb.h @@ -389,12 +389,6 @@ errno_t sysdb_delete_domuser(struct sss_domain_info *domain, const char *name, uid_t uid); -errno_t sysdb_store_domgroup(struct sss_domain_info *domain, - const char *name, - gid_t gid, - struct sysdb_attrs *attrs, - uint64_t cache_timeout, - time_t now); errno_t sysdb_delete_domgroup(struct sss_domain_info *domain, const char *name, gid_t gid); @@ -665,6 +659,7 @@ int sysdb_store_user(struct sysdb_ctx *sysdb, time_t now); int sysdb_store_group(struct sysdb_ctx *sysdb, + struct sss_domain_info *domain, const char *name, gid_t gid, struct sysdb_attrs *attrs, -- cgit