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/tests/sysdb-tests.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/tests') diff --git a/src/tests/sysdb-tests.c b/src/tests/sysdb-tests.c index 76d5e483..fa583e5e 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); -- cgit