summaryrefslogtreecommitdiffstats
path: root/util/perl
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2020-09-15 14:00:37 +0100
committerMatt Caswell <matt@openssl.org>2020-09-18 13:30:44 +0100
commit282de1cc2d71a95482ce431b9ed620f85eb6acbd (patch)
tree46ba9d3e7f8552d1f0e4e3063b8c5f6897a079f5 /util/perl
parent028b31b32da97ada44140120297511eae518ed42 (diff)
Fix some doc-nits and make update errors
The new lhash changes have confused some of the perl scripts so we add some fixes. Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/12860)
Diffstat (limited to 'util/perl')
-rw-r--r--util/perl/OpenSSL/ParseC.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/perl/OpenSSL/ParseC.pm b/util/perl/OpenSSL/ParseC.pm
index b2ac909dc1..7e6377dd17 100644
--- a/util/perl/OpenSSL/ParseC.pm
+++ b/util/perl/OpenSSL/ParseC.pm
@@ -281,7 +281,7 @@ EOF
{ regexp => qr/(.*)\bLHASH_OF<<<\((.*?)\)>>>(.*)/,
massager => sub { return ("$1struct lhash_st_$2$3"); }
},
- { regexp => qr/DEFINE_LHASH_OF<<<\((.*)\)>>>/,
+ { regexp => qr/DEFINE_LHASH_OF(?:_INTERNAL)?<<<\((.*)\)>>>/,
massager => sub {
return (<<"EOF");
static ossl_inline LHASH_OF($1) * lh_$1_new(unsigned long (*hfn)(const $1 *),