From e4f4eeb0c567683d9962e244922bed2d8feca99b Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 29 Dec 2025 21:12:13 +0100 Subject: [PATCH] libssh: fix indent Closes #20135 --- lib/vssh/libssh.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/vssh/libssh.c b/lib/vssh/libssh.c index bde6355f73..3e6cb3a832 100644 --- a/lib/vssh/libssh.c +++ b/lib/vssh/libssh.c @@ -924,8 +924,8 @@ static int myssh_in_AUTHLIST(struct Curl_easy *data, /* For public key auth we need either the private key or CURLSSH_AUTH_AGENT. */ if((sshc->auth_methods & SSH_AUTH_METHOD_PUBLICKEY) && - (data->set.str[STRING_SSH_PRIVATE_KEY] || - (data->set.ssh_auth_types & CURLSSH_AUTH_AGENT))) { + (data->set.str[STRING_SSH_PRIVATE_KEY] || + (data->set.ssh_auth_types & CURLSSH_AUTH_AGENT))) { myssh_to(data, sshc, SSH_AUTH_PKEY_INIT); infof(data, "Authentication using SSH public key file"); }