From a2a09af086e97da35225ec952f2ae75c833b19e7 Mon Sep 17 00:00:00 2001 From: Tomas Mraz Date: Wed, 21 Dec 2022 16:49:10 +0100 Subject: Write SSL_R alerts to error state to keep updated strings Reviewed-by: Todd Short Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/19950) --- util/mkerr.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util') diff --git a/util/mkerr.pl b/util/mkerr.pl index 3c104a16e8..cf9dc3771e 100755 --- a/util/mkerr.pl +++ b/util/mkerr.pl @@ -690,7 +690,7 @@ EOF my $short = "$i:$rcodes{$i}:"; my $t = exists $strings{$i} ? "$strings{$i}" : ""; $t = "\\\n\t" . $t if length($short) + length($t) > 80; - print OUT "$short$t\n" if !exists $rextra{$i}; + print OUT "$short$t\n"; } close(OUT); if ( $skippedstate ) { -- cgit v1.2.1