From 2ca23577d3a25aead24ba759a1f6f67ffc24decf Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 7 Jan 2013 23:59:17 -0500 Subject: Add domain argument to sysdb_remove_attrs() --- src/db/sysdb_services.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/db/sysdb_services.c') diff --git a/src/db/sysdb_services.c b/src/db/sysdb_services.c index 368cdeb6..2ac8d9a4 100644 --- a/src/db/sysdb_services.c +++ b/src/db/sysdb_services.c @@ -170,6 +170,7 @@ done: errno_t sysdb_store_service(struct sysdb_ctx *sysdb, + struct sss_domain_info *domain, const char *primary_name, int port, const char **aliases, @@ -385,7 +386,7 @@ sysdb_store_service(struct sysdb_ctx *sysdb, if (ret != EOK) goto done; if (remove_attrs) { - ret = sysdb_remove_attrs(sysdb, primary_name, + ret = sysdb_remove_attrs(sysdb, domain, primary_name, SYSDB_MEMBER_SERVICE, remove_attrs); if (ret != EOK) { -- cgit