summaryrefslogtreecommitdiff
path: root/src/db/sysdb_ops.c
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2013-01-06 01:17:13 -0500
committerJakub Hrozek <jhrozek@redhat.com>2013-01-15 10:49:20 +0100
commit7c974e792beef952ceb19a01775c6d0ee71a1253 (patch)
tree8e6ccb5fcd7b99233ec0572d9b6dd90373a5ecc4 /src/db/sysdb_ops.c
parent52c72ae8587d8d47393a891ccd4ef06bd4bef856 (diff)
downloadsssd-7c974e792beef952ceb19a01775c6d0ee71a1253.tar.gz
sssd-7c974e792beef952ceb19a01775c6d0ee71a1253.tar.bz2
sssd-7c974e792beef952ceb19a01775c6d0ee71a1253.zip
Make sysdb_netgroup_dn() require a domain explictly.
Diffstat (limited to 'src/db/sysdb_ops.c')
-rw-r--r--src/db/sysdb_ops.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/db/sysdb_ops.c b/src/db/sysdb_ops.c
index 1f8c8315..2364f17b 100644
--- a/src/db/sysdb_ops.c
+++ b/src/db/sysdb_ops.c
@@ -453,7 +453,7 @@ int sysdb_search_netgroup_by_name(TALLOC_CTX *mem_ctx,
return ENOMEM;
}
- basedn = sysdb_netgroup_dn(sysdb, tmp_ctx, name);
+ basedn = sysdb_netgroup_dn(sysdb, tmp_ctx, sysdb->domain, name);
if (!basedn) {
ret = ENOMEM;
goto done;
@@ -625,7 +625,7 @@ int sysdb_set_netgroup_attr(struct sysdb_ctx *sysdb,
return ENOMEM;
}
- dn = sysdb_netgroup_dn(sysdb, tmp_ctx, name);
+ dn = sysdb_netgroup_dn(sysdb, tmp_ctx, sysdb->domain, name);
if (!dn) {
ret = ENOMEM;
goto done;
@@ -1481,7 +1481,7 @@ int sysdb_add_basic_netgroup(struct sysdb_ctx *sysdb,
}
/* netgroup dn */
- msg->dn = sysdb_netgroup_dn(sysdb, msg, name);
+ msg->dn = sysdb_netgroup_dn(sysdb, msg, sysdb->domain, name);
if (!msg->dn) {
ERROR_OUT(ret, ENOMEM, done);
}
@@ -3053,7 +3053,7 @@ errno_t sysdb_remove_attrs(struct sysdb_ctx *sysdb,
break;
case SYSDB_MEMBER_NETGROUP:
- msg->dn = sysdb_netgroup_dn(sysdb, msg, name);
+ msg->dn = sysdb_netgroup_dn(sysdb, msg, sysdb->domain, name);
break;
case SYSDB_MEMBER_SERVICE: