From 149bf19b4c80aea45f050257ff2f796525eb7207 Mon Sep 17 00:00:00 2001 From: Marco Oliverio Date: Tue, 23 Dec 2025 23:41:52 +0100 Subject: [PATCH] split overlong line --- src/internal.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/internal.c b/src/internal.c index 47e69476e..46e4c335b 100644 --- a/src/internal.c +++ b/src/internal.c @@ -41861,7 +41861,8 @@ int wolfssl_local_GetMaxPlaintextSize(WOLFSSL *ssl) mtu = MAX_MTU; #endif - recordSz = wolfssl_local_GetRecordSize(ssl, maxFrag, IsEncryptionOn(ssl, 1)); + recordSz = wolfssl_local_GetRecordSize(ssl, maxFrag, + IsEncryptionOn(ssl, 1)); /* record size of maxFrag fits in MTU */ if (recordSz <= mtu) { return maxFrag;