1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-12-14 04:18:54 +03:00

options.c: Fix formatting

Signed-off-by: Eshan Kelkar <eshankelkar@galorithm.com>
Reviewed-by: Jakub Jelen <jjelen@redhat.com>
This commit is contained in:
Eshan Kelkar
2024-05-13 09:42:00 +05:30
committed by Jakub Jelen
parent cf1e02010c
commit 60aa354c19

View File

@@ -1220,7 +1220,8 @@ int ssh_options_set(ssh_session session, enum ssh_options_e type,
if (*x > 0 && *x < 768) {
ssh_set_error(session, SSH_REQUEST_DENIED,
"The provided value (%u) for minimal RSA key "
"size is too small. Use at least 768 bits.", *x);
"size is too small. Use at least 768 bits.",
*x);
return -1;
}
session->opts.rsa_min_size = *x;