summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2022-12-21 16:49:10 +0100
committerTomas Mraz <tomas@openssl.org>2023-01-05 19:48:01 +0100
commita2a09af086e97da35225ec952f2ae75c833b19e7 (patch)
treef9dbd69c416cc7bb9ded68340aa8e432cc76e050 /util
parent55e2dd8c3162d7313d9408cb20fca8a4fe6e6f5a (diff)
downloadopenssl-new-a2a09af086e97da35225ec952f2ae75c833b19e7.tar.gz
Write SSL_R alerts to error state to keep updated strings
Reviewed-by: Todd Short <todd.short@me.com> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19950)
Diffstat (limited to 'util')
-rwxr-xr-xutil/mkerr.pl2
1 files changed, 1 insertions, 1 deletions
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 ) {