From 828b9b7024b9292175293303165d01f5d1b0b510 Mon Sep 17 00:00:00 2001 From: Ruby Martin Date: Tue, 15 Jul 2025 13:12:30 -0600 Subject: [PATCH] remove mac_alg check, mac_alg is always no_mac on subsequent iterations --- src/internal.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/internal.c b/src/internal.c index c74bcf36f..b096f7f5e 100644 --- a/src/internal.c +++ b/src/internal.c @@ -28814,10 +28814,6 @@ int SetSuitesHashSigAlgo(Suites* suites, const char* list) do { if (*list == '+') { - if (mac_alg != 0) { - ret = 0; - break; - } sig_alg = GetSigAlgFromName(s, (int)(list - s)); if (sig_alg == 0) { ret = 0;