fix for gcc 10+ error on snprintf

This commit is contained in:
JacobBarthelmeh
2020-05-27 16:20:39 -06:00
parent e388885407
commit 8e9f518caa

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:",