summaryrefslogtreecommitdiff
path: root/util/mkerr.pl
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2022-05-20 16:54:12 +0100
committerMatt Caswell <matt@openssl.org>2022-08-18 16:38:12 +0100
commit7f2f0ac7bfdd676cd919dd94b971874eade41830 (patch)
treec122a2279d2735c70737bcbd1d16dd84a3bff139 /util/mkerr.pl
parent88d616805cab4fd052bcff890627668a8f4bae33 (diff)
downloadopenssl-new-7f2f0ac7bfdd676cd919dd94b971874eade41830.tar.gz
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-xutil/mkerr.pl5
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;