[openssl] master update
matthias.st.pierre at ncp-e.com
matthias.st.pierre at ncp-e.com
Tue Dec 10 17:45:41 UTC 2019
The branch master has been updated
via 436c21a0fd317cb929fb00eefb1ac84e90676097 (commit)
from 8c06d7199e3885d24e39439f54b2ed2e5b40fbea (commit)
- Log -----------------------------------------------------------------
commit 436c21a0fd317cb929fb00eefb1ac84e90676097
Author: Rich Salz <rsalz at akamai.com>
Date: Mon Nov 18 05:29:21 2019 -0500
Remove handling of outdated macro's
DECLARE_STACK_OF was renamed to DEFINE_STACK_OF in commit 8588571.
Expanded the only use of TYPEDEF_{D2I,I2D,D2I2D}_OF, so that they can
easily be removed in a future release
Reviewed-by: Richard Levitte <levitte at openssl.org>
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre at ncp-e.com>
(Merged from https://github.com/openssl/openssl/pull/10464)
-----------------------------------------------------------------------
Summary of changes:
include/openssl/asn1.h | 3 ++-
util/mkerr.pl | 2 +-
util/perl/OpenSSL/ParseC.pm | 25 -------------------------
3 files changed, 3 insertions(+), 27 deletions(-)
diff --git a/include/openssl/asn1.h b/include/openssl/asn1.h
index 1aa4b8300c..07db817d42 100644
--- a/include/openssl/asn1.h
+++ b/include/openssl/asn1.h
@@ -276,7 +276,8 @@ typedef struct ASN1_VALUE_st ASN1_VALUE;
# define TYPEDEF_I2D_OF(type) typedef int i2d_of_##type(const type *,unsigned char **)
# define TYPEDEF_D2I2D_OF(type) TYPEDEF_D2I_OF(type); TYPEDEF_I2D_OF(type)
-TYPEDEF_D2I2D_OF(void);
+typedef void *d2i_of_void(void **, const unsigned char **, long);
+typedef int i2d_of_void(const void *, unsigned char **);
/*-
* The following macros and typedefs allow an ASN1_ITEM
diff --git a/util/mkerr.pl b/util/mkerr.pl
index d72b407909..3f59e04e1a 100755
--- a/util/mkerr.pl
+++ b/util/mkerr.pl
@@ -315,7 +315,7 @@ while ( ( my $hdr, my $lib ) = each %libinc ) {
s/[\n\s]*$//g;
# Skip over recognized non-function declarations
- next if /typedef\W/ or /DECLARE_STACK_OF/ or /TYPEDEF_.*_OF/;
+ next if /typedef\W/;
# Remove STACK_OF(foo)
s/STACK_OF\(\w+\)/void/;
diff --git a/util/perl/OpenSSL/ParseC.pm b/util/perl/OpenSSL/ParseC.pm
index 392e61faf2..6d615016b4 100644
--- a/util/perl/OpenSSL/ParseC.pm
+++ b/util/perl/OpenSSL/ParseC.pm
@@ -372,34 +372,9 @@ EOF
{ regexp => qr/DEFINE_STACK_OF_CONST<<<\((.*)\)>>>/,
massager => sub { return ("SKM_DEFINE_STACK_OF($1,const $1,$1)"); },
},
- { regexp => qr/PREDECLARE_STACK_OF<<<\((.*)\)>>>/,
- massager => sub { return ("STACK_OF($1);"); }
- },
- { regexp => qr/DECLARE_STACK_OF<<<\((.*)\)>>>/,
- massager => sub { return ("STACK_OF($1);"); }
- },
- { regexp => qr/DECLARE_SPECIAL_STACK_OF<<<\((.*?),\s*(.*?)\)>>>/,
- massager => sub { return ("STACK_OF($1);"); }
- },
#####
# ASN1 stuff
-
- { regexp => qr/TYPEDEF_D2I_OF<<<\((.*)\)>>>/,
- massager => sub {
- return ("typedef $1 *d2i_of_$1($1 **,const unsigned char **,long)");
- },
- },
- { regexp => qr/TYPEDEF_I2D_OF<<<\((.*)\)>>>/,
- massager => sub {
- return ("typedef $1 *i2d_of_$1($1 *,unsigned char **)");
- },
- },
- { regexp => qr/TYPEDEF_D2I2D_OF<<<\((.*)\)>>>/,
- massager => sub {
- return ("TYPEDEF_D2I_OF($1); TYPEDEF_I2D_OF($1)");
- },
- },
{ regexp => qr/DECLARE_ASN1_ITEM<<<\((.*)\)>>>/,
massager => sub {
return (<<"EOF");
More information about the openssl-commits
mailing list