summaryrefslogtreecommitdiffstats
path: root/src/tests/sysdb-tests.c
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2013-01-07 23:59:17 -0500
committerJakub Hrozek <jhrozek@redhat.com>2013-01-15 10:53:02 +0100
commit2ca23577d3a25aead24ba759a1f6f67ffc24decf (patch)
tree8651a1d54846d8a3ccfa52e66953982dd9727c67 /src/tests/sysdb-tests.c
parent80c6afa474d8a1e0198832bddfe5da75a9818b29 (diff)
downloadsssd-2ca23577d3a25aead24ba759a1f6f67ffc24decf.tar.gz
sssd-2ca23577d3a25aead24ba759a1f6f67ffc24decf.tar.xz
sssd-2ca23577d3a25aead24ba759a1f6f67ffc24decf.zip
Add domain argument to sysdb_remove_attrs()
Diffstat (limited to 'src/tests/sysdb-tests.c')
-rw-r--r--src/tests/sysdb-tests.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tests/sysdb-tests.c b/src/tests/sysdb-tests.c
index 76d5e483f..fa583e5ef 100644
--- a/src/tests/sysdb-tests.c
+++ b/src/tests/sysdb-tests.c
@@ -4050,7 +4050,7 @@ START_TEST(test_sysdb_store_services)
fail_if(ret != EOK);
/* Store this group (which will add it) */
- ret = sysdb_store_service(test_ctx->sysdb,
+ ret = sysdb_store_service(test_ctx->sysdb, test_ctx->domain,
primary_name, port,
aliases, protocols,
NULL, NULL, 1, 1);
@@ -4067,7 +4067,7 @@ START_TEST(test_sysdb_store_services)
aliases, protocols);
/* Change the service name */
- ret = sysdb_store_service(test_ctx->sysdb,
+ ret = sysdb_store_service(test_ctx->sysdb, test_ctx->domain,
alt_primary_name, port,
aliases, protocols,
NULL, NULL, 1, 1);
@@ -4084,14 +4084,14 @@ START_TEST(test_sysdb_store_services)
/* Change it back */
- ret = sysdb_store_service(test_ctx->sysdb,
+ ret = sysdb_store_service(test_ctx->sysdb, test_ctx->domain,
primary_name, port,
aliases, protocols,
NULL, NULL, 1, 1);
fail_if (ret != EOK, "[%s]", strerror(ret));
/* Change the port number */
- ret = sysdb_store_service(test_ctx->sysdb,
+ ret = sysdb_store_service(test_ctx->sysdb, test_ctx->domain,
primary_name, altport,
aliases, protocols,
NULL, NULL, 1, 1);