summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2019-04-18 17:43:05 +0100
committerMatt Caswell <matt@openssl.org>2019-04-19 09:31:54 +0100
commit6caf7f3aec5484ee65067e9671299d3411565dc1 (patch)
tree44afc9f27566e7044c22fa95c00946b9fb37a9a4 /util
parent64adf9aac765f0872c33d225c57e5c128f5d7c69 (diff)
Create provider errors and use them
Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/8700)
Diffstat (limited to 'util')
-rwxr-xr-xutil/ck_errf.pl3
-rwxr-xr-xutil/mkerr.pl3
2 files changed, 4 insertions, 2 deletions
diff --git a/util/ck_errf.pl b/util/ck_errf.pl
index cc7224ad9d..681535e720 100755
--- a/util/ck_errf.pl
+++ b/util/ck_errf.pl
@@ -72,7 +72,8 @@ if ( $internal ) {
die "Extra parameters given.\n" if @ARGV;
$config = "crypto/err/openssl.ec" unless defined $config;
@source = ( glob('crypto/*.c'), glob('crypto/*/*.c'),
- glob('ssl/*.c'), glob('ssl/*/*.c') );
+ glob('ssl/*.c'), glob('ssl/*/*.c'), glob('providers/*.c'),
+ glob('providers/*/*.c'), glob('providers/*/*/*.c') );
} else {
die "Configuration file not given.\nSee '$0 -help' for information\n"
unless defined $config;
diff --git a/util/mkerr.pl b/util/mkerr.pl
index 7139ee3bea..f1d9b39b95 100755
--- a/util/mkerr.pl
+++ b/util/mkerr.pl
@@ -114,7 +114,8 @@ 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('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;