Merge pull request #3003 from JacobBarthelmeh/Testing

fix for gcc 10+ error on snprintf
This commit is contained in:
toddouska
2020-05-28 13:28:30 -07:00
committed by GitHub

View File

@@ -34639,7 +34639,8 @@ int wolfSSL_RSA_print(WOLFSSL_BIO* bio, WOLFSSL_RSA* rsa, int offset)
RsaKey* iRsa = NULL;
int i = 0;
mp_int *rsaElem = NULL;
char rsaStr[][20] = { "Modulus:",
const char *rsaStr[] = {
"Modulus:",
"PublicExponent:",
"PrivateExponent:",
"Prime1:",