From 24f4335fe55651ffb9f07e503a6609c89057746b Mon Sep 17 00:00:00 2001 From: JacobBarthelmeh Date: Thu, 23 Oct 2025 16:24:43 -0600 Subject: [PATCH 1/2] add writedup to enable all and distro builds --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 00e583e25e..e784876577 100644 --- a/configure.ac +++ b/configure.ac @@ -1081,6 +1081,7 @@ then test "$enable_session_ticket" = "" && enable_session_ticket=yes test "$enable_earlydata" = "" && enable_earlydata=yes test "$enable_rpk" = "" && enable_rpk=yes + test "$enable_writedup" = "" && enable_writedup=yes if test "$ENABLED_LINUXKM_DEFAULTS" != "yes" then From d168250c1faa51250176692d41aabe6bc937f8d1 Mon Sep 17 00:00:00 2001 From: JacobBarthelmeh Date: Fri, 24 Oct 2025 09:33:35 -0600 Subject: [PATCH 2/2] fix for clang tidy warning --- src/ssl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ssl.c b/src/ssl.c index daa9b6dc78..b16addb900 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -1519,6 +1519,7 @@ WOLFSSL* wolfSSL_write_dup(WOLFSSL* ssl) } WOLFSSL_LEAVE("wolfSSL_write_dup", ret); + (void)ret; /* ret is used for debug message, dup is set to null on fail */ return dup; }