Fix mbedTLS issues

Signed-off-by: Noah Miller <mike@stealthwing.com>
Reviewed-by: Jakub Jelen <jjelen@redhat.com>
This commit is contained in:
Noah Miller
2024-04-05 21:41:04 +13:00
committed by Jakub Jelen
parent 4a83c50ce9
commit d2a8a464a7
2 changed files with 2 additions and 2 deletions

View File

@@ -1012,7 +1012,7 @@ ssh_string pki_key_to_blob(const ssh_key key, enum ssh_key_e type)
if (d == NULL) {
goto fail;
}
rc = mbedtls_rsa_export_crt(rsa, NULL, NULL, &IQMP)
rc = mbedtls_rsa_export_crt(rsa, NULL, NULL, &IQMP);
if (rc != 0) {
goto fail;
}