diff options
author | Matt Caswell <matt@openssl.org> | 2022-05-20 17:54:12 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2022-08-18 17:38:12 +0200 |
commit | 7f2f0ac7bfdd676cd919dd94b971874eade41830 (patch) | |
tree | c122a2279d2735c70737bcbd1d16dd84a3bff139 /util/mkerr.pl | |
parent | Remove SSL_USE_EXPLICT_IV() from the record layer methods (diff) | |
download | openssl-7f2f0ac7bfdd676cd919dd94b971874eade41830.tar.xz openssl-7f2f0ac7bfdd676cd919dd94b971874eade41830.zip |
Make the record layer directly aware of EtM
We no longer have to go through the SSL object to discover whether EtM has
been negotiated.
Reviewed-by: Hugo Landau <hlandau@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18132)
Diffstat (limited to 'util/mkerr.pl')
-rwxr-xr-x | util/mkerr.pl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/util/mkerr.pl b/util/mkerr.pl index 1cb772c00f..861b613b0d 100755 --- a/util/mkerr.pl +++ b/util/mkerr.pl @@ -117,8 +117,9 @@ if ( $internal ) { die "Cannot mix -internal and -static\n" if $static; die "Extra parameters given.\n" if @ARGV; @source = ( glob('crypto/*.c'), glob('crypto/*/*.c'), - glob('ssl/*.c'), glob('ssl/*/*.c'), glob('providers/*.c'), - glob('providers/*/*.c'), glob('providers/*/*/*.c') ); + glob('ssl/*.c'), glob('ssl/*/*.c'), glob('ssl/*/*/*.c'), + glob('providers/*.c'), glob('providers/*/*.c'), + glob('providers/*/*/*.c') ); } else { die "-module isn't useful without -internal\n" if scalar keys %modules > 0; @source = @ARGV; |