@@ -234,7 +234,7 @@ static int Tls13HKDFExpandKeyLabel(WOLFSSL* ssl, byte* okm, word32 okmLen,
234234{
235235 int ret;
236236#if defined(HAVE_PK_CALLBACKS)
237- ret = NOT_COMPILED_IN;
237+ ret = WC_NO_ERR_TRACE( NOT_COMPILED_IN) ;
238238 if (ssl->ctx && ssl->ctx->HKDFExpandLabelCb) {
239239 ret = ssl->ctx->HKDFExpandLabelCb(okm, okmLen, prk, prkLen,
240240 protocol, protocolLen,
@@ -2662,7 +2662,7 @@ static int EncryptTls13(WOLFSSL* ssl, byte* output, const byte* input,
26622662 nonceSz = AESGCM_NONCE_SZ;
26632663
26642664 #if defined(HAVE_PK_CALLBACKS)
2665- ret = NOT_COMPILED_IN;
2665+ ret = WC_NO_ERR_TRACE( NOT_COMPILED_IN) ;
26662666 if (ssl->ctx && ssl->ctx->PerformTlsRecordProcessingCb) {
26672667 ret = ssl->ctx->PerformTlsRecordProcessingCb(ssl, 1,
26682668 output, input, dataSz,
@@ -2704,7 +2704,7 @@ static int EncryptTls13(WOLFSSL* ssl, byte* output, const byte* input,
27042704
27052705 nonceSz = AESCCM_NONCE_SZ;
27062706 #if defined(HAVE_PK_CALLBACKS)
2707- ret = NOT_COMPILED_IN;
2707+ ret = WC_NO_ERR_TRACE( NOT_COMPILED_IN) ;
27082708 if (ssl->ctx && ssl->ctx->PerformTlsRecordProcessingCb) {
27092709 ret = ssl->ctx->PerformTlsRecordProcessingCb(ssl, 1,
27102710 output, input, dataSz,
@@ -3063,7 +3063,7 @@ int DecryptTls13(WOLFSSL* ssl, byte* output, const byte* input, word16 sz,
30633063 nonceSz = AESGCM_NONCE_SZ;
30643064
30653065 #if defined(HAVE_PK_CALLBACKS)
3066- ret = NOT_COMPILED_IN;
3066+ ret = WC_NO_ERR_TRACE( NOT_COMPILED_IN) ;
30673067 if (ssl->ctx && ssl->ctx->PerformTlsRecordProcessingCb) {
30683068 ret = ssl->ctx->PerformTlsRecordProcessingCb(ssl, 0,
30693069 output, input, dataSz,
@@ -3102,7 +3102,7 @@ int DecryptTls13(WOLFSSL* ssl, byte* output, const byte* input, word16 sz,
31023102
31033103 nonceSz = AESCCM_NONCE_SZ;
31043104 #if defined(HAVE_PK_CALLBACKS)
3105- ret = NOT_COMPILED_IN;
3105+ ret = WC_NO_ERR_TRACE( NOT_COMPILED_IN) ;
31063106 if (ssl->ctx && ssl->ctx->PerformTlsRecordProcessingCb) {
31073107 ret = ssl->ctx->PerformTlsRecordProcessingCb(ssl, 0,
31083108 output, input, dataSz,
@@ -6892,7 +6892,7 @@ int DoTls13ClientHello(WOLFSSL* ssl, const byte* input, word32* inOutIdx,
68926892#endif
68936893 {
68946894 /* Reset state */
6895- ret = VERSION_ERROR;
6895+ ret = WC_NO_ERR_TRACE( VERSION_ERROR) ;
68966896 ssl->options.asyncState = TLS_ASYNC_BEGIN;
68976897 XMEMSET(args, 0, sizeof(Dch13Args));
68986898 #ifdef WOLFSSL_ASYNC_CRYPT
0 commit comments