mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-01-29 13:32:13 +01:00
Fix errors (jenkins)
This commit is contained in:
@@ -3668,6 +3668,7 @@ int DupSSL(WOLFSSL* ssl, WOLFSSL* ossl)
|
||||
if (ret != 0)
|
||||
return ret;
|
||||
|
||||
#ifndef NO_DH
|
||||
/* Don't copy if (p,g) owned by ctx */
|
||||
if (ssl->buffers.weOwnDH || ssl->options.side == WOLFSSL_CLIENT_END) {
|
||||
ret = DupBuffer(&ssl->buffers.serverDH_P,
|
||||
@@ -3680,6 +3681,7 @@ int DupSSL(WOLFSSL* ssl, WOLFSSL* ossl)
|
||||
if (ret != 0)
|
||||
return ret;
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef KEEP_PEER_CERT
|
||||
ret = DupX509(&ssl->peerCert, &ossl->peerCert);
|
||||
|
||||
@@ -88,6 +88,7 @@
|
||||
#include <wolfssl/wolfcrypt/sha512.h>
|
||||
#endif
|
||||
#include <wolfssl/wolfcrypt/bio.h>
|
||||
#include <time.h>
|
||||
#endif
|
||||
|
||||
#ifdef NO_ASN
|
||||
@@ -15880,13 +15881,6 @@ void* wolfSSL_GetRsaDecCtx(WOLFSSL* ssl)
|
||||
return 0;
|
||||
}
|
||||
|
||||
WOLFSSL_BIO_METHOD* wolfSSL_BIO_s_file(void) {
|
||||
WOLFSSL_ENTER("wolfSSL_BIO_s_file");
|
||||
WOLFSSL_STUB("wolfSSL_BIO_s_file");
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
const char * wolf_OBJ_nid2sn(int n) {
|
||||
(void)n;
|
||||
WOLFSSL_ENTER("wolf_OBJ_nid2sn");
|
||||
|
||||
Reference in New Issue
Block a user