From e299638926171e0e92a36122aeff6611cd52418d Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Sat, 28 Jan 2012 10:34:02 -0500 Subject: SYSDB: extend sysdb_store_service() to accept additional attributes --- src/tests/sysdb-tests.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/tests/sysdb-tests.c') diff --git a/src/tests/sysdb-tests.c b/src/tests/sysdb-tests.c index fa034cec8..886491a77 100644 --- a/src/tests/sysdb-tests.c +++ b/src/tests/sysdb-tests.c @@ -3015,7 +3015,7 @@ START_TEST(test_sysdb_store_services) ret = sysdb_store_service(test_ctx->sysdb, primary_name, port, aliases, protocols, - 1, 1); + NULL, NULL, 1, 1); fail_if (ret != EOK); /* Search by name and make sure the results match */ @@ -3032,7 +3032,7 @@ START_TEST(test_sysdb_store_services) ret = sysdb_store_service(test_ctx->sysdb, alt_primary_name, port, aliases, protocols, - 1, 1); + NULL, NULL, 1, 1); fail_if (ret != EOK, "[%s]", strerror(ret)); services_check_match_name(test_ctx, @@ -3049,14 +3049,14 @@ START_TEST(test_sysdb_store_services) ret = sysdb_store_service(test_ctx->sysdb, primary_name, port, aliases, protocols, - 1, 1); + NULL, NULL, 1, 1); fail_if (ret != EOK, "[%s]", strerror(ret)); /* Change the port number */ ret = sysdb_store_service(test_ctx->sysdb, primary_name, altport, aliases, protocols, - 1, 1); + NULL, NULL, 1, 1); fail_if (ret != EOK, "[%s]", strerror(ret)); /* Search by name and make sure the results match */ -- cgit