Skip to content

Commit

Permalink
fix too few arguments for priv_set_errv
Browse files Browse the repository at this point in the history
  • Loading branch information
upa committed Apr 13, 2024
1 parent 76a57b2 commit e47d5b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ssh.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ static int ssh_set_opts(ssh_session ssh, struct mscp_ssh_opts *opts)
int n;
for (n = 0; opts->options[n]; n++) {
if (ssh_config_parse_string(ssh, opts->options[n]) != SSH_OK) {
priv_set_errv("failed to set ssh option %s: %s",
priv_set_errv("failed to set ssh option: %s",
opts->options[n]);
return -1;
}
Expand Down

0 comments on commit e47d5b7

Please sign in to comment.