mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-02 04:04:39 +02:00
fix for gcc 10+ error on snprintf
This commit is contained in:
@@ -34639,7 +34639,8 @@ int wolfSSL_RSA_print(WOLFSSL_BIO* bio, WOLFSSL_RSA* rsa, int offset)
|
|||||||
RsaKey* iRsa = NULL;
|
RsaKey* iRsa = NULL;
|
||||||
int i = 0;
|
int i = 0;
|
||||||
mp_int *rsaElem = NULL;
|
mp_int *rsaElem = NULL;
|
||||||
char rsaStr[][20] = { "Modulus:",
|
const char *rsaStr[] = {
|
||||||
|
"Modulus:",
|
||||||
"PublicExponent:",
|
"PublicExponent:",
|
||||||
"PrivateExponent:",
|
"PrivateExponent:",
|
||||||
"Prime1:",
|
"Prime1:",
|
||||||
|
Reference in New Issue
Block a user