From e58ea31796e88047f75a7ad0edad48593dd40667 Mon Sep 17 00:00:00 2001 From: Ilia Rostovtsev Date: Sat, 20 Nov 2021 13:46:56 +0300 Subject: [PATCH] Fix options precedence --- apache/core.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/apache/core.pl b/apache/core.pl index 101589c00..71f64df25 100755 --- a/apache/core.pl +++ b/apache/core.pl @@ -638,6 +638,7 @@ if ($in{'protocols_def'}) { else { my @prots = split(/\0/, $in{'protocols'}); @prots || &error($text{'core_eprotocols'}); + @prots = sort @prots; return ( [ join(" ", @prots) ] ); } }