From 965428847850f1b154130e249f2d942c6065e88d Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 8 Jan 2013 01:09:54 -0500 Subject: Add domain arguments to sysdb ssh functions --- src/tests/sysdb_ssh-tests.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/tests') diff --git a/src/tests/sysdb_ssh-tests.c b/src/tests/sysdb_ssh-tests.c index 013a1d43d..c69901638 100644 --- a/src/tests/sysdb_ssh-tests.c +++ b/src/tests/sysdb_ssh-tests.c @@ -173,6 +173,7 @@ static int test_sysdb_store_ssh_host(struct test_data *data) time_t now = time(NULL); ret = sysdb_store_ssh_host(data->ctx->sysdb, + data->ctx->domain, data->hostname, data->alias, now, @@ -184,7 +185,8 @@ static int test_sysdb_delete_ssh_host(struct test_data *data) { int ret; - ret = sysdb_delete_ssh_host(data->ctx->sysdb, data->hostname); + ret = sysdb_delete_ssh_host(data->ctx->sysdb, + data->ctx->domain, data->hostname); return ret; } @@ -194,7 +196,7 @@ static int test_sysdb_get_ssh_host(struct test_data *data) const char *attrs[] = { SYSDB_NAME, NULL }; ret = sysdb_get_ssh_host(data->ctx, data->ctx->sysdb, - data->hostname, attrs, + data->ctx->domain, data->hostname, attrs, &data->host); return ret; -- cgit