From 19d8bc19b5b5597427878645644fa354ef6cb54d Mon Sep 17 00:00:00 2001 From: Michal Zidek Date: Fri, 11 Oct 2013 17:50:12 +0200 Subject: SYSDB: Drop the sysdb_ctx parameter from the sysdb_ssh module --- src/tests/sysdb_ssh-tests.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'src/tests/sysdb_ssh-tests.c') diff --git a/src/tests/sysdb_ssh-tests.c b/src/tests/sysdb_ssh-tests.c index 95c57a7e..114c33ca 100644 --- a/src/tests/sysdb_ssh-tests.c +++ b/src/tests/sysdb_ssh-tests.c @@ -172,8 +172,7 @@ static int test_sysdb_store_ssh_host(struct test_data *data) int ret; time_t now = time(NULL); - ret = sysdb_store_ssh_host(data->ctx->sysdb, - data->ctx->domain, + ret = sysdb_store_ssh_host(data->ctx->domain, data->hostname, data->alias, now, @@ -185,8 +184,7 @@ static int test_sysdb_delete_ssh_host(struct test_data *data) { int ret; - ret = sysdb_delete_ssh_host(data->ctx->sysdb, - data->ctx->domain, data->hostname); + ret = sysdb_delete_ssh_host(data->ctx->domain, data->hostname); return ret; } @@ -195,9 +193,8 @@ static int test_sysdb_get_ssh_host(struct test_data *data) int ret; const char *attrs[] = { SYSDB_NAME, NULL }; - ret = sysdb_get_ssh_host(data->ctx, data->ctx->sysdb, - data->ctx->domain, data->hostname, attrs, - &data->host); + ret = sysdb_get_ssh_host(data->ctx, data->ctx->domain, data->hostname, + attrs, &data->host); return ret; } -- cgit