From e17161dc4fce9e9db53078f54d0ac26958ad7561 Mon Sep 17 00:00:00 2001 From: Jakub Jelen Date: Thu, 16 May 2024 17:46:39 +0200 Subject: [PATCH] tests: Fix setting home dir argument Signed-off-by: Jakub Jelen Reviewed-by: Sahana Prasad --- tests/client/torture_auth_cert.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/client/torture_auth_cert.c b/tests/client/torture_auth_cert.c index 18766b93..29723bcf 100644 --- a/tests/client/torture_auth_cert.c +++ b/tests/client/torture_auth_cert.c @@ -100,7 +100,7 @@ static int session_setup_ssh_dir(void **state) session_setup(state); - rc = ssh_options_set(s->ssh.session, SSH_OPTIONS_SSH_DIR, &no_home); + rc = ssh_options_set(s->ssh.session, SSH_OPTIONS_SSH_DIR, no_home); assert_ssh_return_code(s->ssh.session, rc); return 0;