summaryrefslogtreecommitdiffstats
path: root/src/tests
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/tests
parent52c72ae8587d8d47393a891ccd4ef06bd4bef856 (diff)
downloadsssd-7c974e792beef952ceb19a01775c6d0ee71a1253.tar.gz
sssd-7c974e792beef952ceb19a01775c6d0ee71a1253.tar.xz
sssd-7c974e792beef952ceb19a01775c6d0ee71a1253.zip
Make sysdb_netgroup_dn() require a domain explictly.
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/sysdb-tests.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/tests/sysdb-tests.c b/src/tests/sysdb-tests.c
index 1b31d6977..834b41174 100644
--- a/src/tests/sysdb-tests.c
+++ b/src/tests/sysdb-tests.c
@@ -481,7 +481,8 @@ static int test_remove_netgroup_entry(struct test_data *data)
struct ldb_dn *netgroup_dn;
int ret;
- netgroup_dn = sysdb_netgroup_dn(data->ctx->sysdb, data, data->netgrname);
+ netgroup_dn = sysdb_netgroup_dn(data->ctx->sysdb, data,
+ data->ctx->domain, data->netgrname);
if (!netgroup_dn) return ENOMEM;
ret = sysdb_delete_entry(data->ctx->sysdb, netgroup_dn, true);
@@ -3528,7 +3529,8 @@ START_TEST (test_sysdb_search_netgroup_by_name)
netgrname, NULL, &msg);
fail_if(ret != EOK, "Could not find netgroup with name %s", netgrname);
- netgroup_dn = sysdb_netgroup_dn(test_ctx->sysdb, test_ctx, netgrname);
+ netgroup_dn = sysdb_netgroup_dn(test_ctx->sysdb, test_ctx,
+ test_ctx->domain, netgrname);
fail_if(netgroup_dn == NULL);
fail_if(ldb_dn_compare(msg->dn, netgroup_dn) != 0, "Found wrong netgroup!\n");
talloc_free(test_ctx);