From cedfe9938a804111cf522be5faa4e54713dfb1c3 Mon Sep 17 00:00:00 2001 From: Satoshi Yamaguchi Date: Sat, 6 Aug 2022 00:15:49 +0900 Subject: [PATCH] Fix the comment about the argument of wolfSSL_PEM_read_RSAPrivateKey. --- src/pk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pk.c b/src/pk.c index 6802bfe19..633aeffa3 100644 --- a/src/pk.c +++ b/src/pk.c @@ -1782,7 +1782,7 @@ WOLFSSL_RSA* wolfSSL_PEM_read_bio_RSAPrivateKey(WOLFSSL_BIO* bio, /* Create an RSA private key by reading the PEM encoded data from the file * pointer. * - * @param [in] fp BIO object to read from. + * @param [in] fp File pointer to read from. * @param [out] out RSA key created. * @param [in] cb Password callback when PEM encrypted. * @param [in] pass NUL terminated string for passphrase when PEM encrypted.