summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/man/check_complete.pl
diff options
context:
space:
mode:
authorschwarze <>2025-06-08 19:32:34 +0000
committerschwarze <>2025-06-08 19:32:34 +0000
commitee9c96a979008464de3cdbdfb8ebd331458f9c58 (patch)
treed2efbaf5bf1c12df5b051e59a95c2f2ad9f2fabc /src/regress/lib/libcrypto/man/check_complete.pl
parent149c445b41806584e6143ac8bad0c2c796f3d61e (diff)
downloadopenbsd-ee9c96a979008464de3cdbdfb8ebd331458f9c58.tar.gz
openbsd-ee9c96a979008464de3cdbdfb8ebd331458f9c58.tar.bz2
openbsd-ee9c96a979008464de3cdbdfb8ebd331458f9c58.zip
allow checking of conf.h
Diffstat (limited to 'src/regress/lib/libcrypto/man/check_complete.pl')
-rwxr-xr-xsrc/regress/lib/libcrypto/man/check_complete.pl6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/regress/lib/libcrypto/man/check_complete.pl b/src/regress/lib/libcrypto/man/check_complete.pl
index 5f2d12ec73..7455affa60 100755
--- a/src/regress/lib/libcrypto/man/check_complete.pl
+++ b/src/regress/lib/libcrypto/man/check_complete.pl
@@ -30,6 +30,9 @@ my %internal = (
30 BN_MASK2 BN_MASK2h BN_MASK2h1 BN_MASK2l 30 BN_MASK2 BN_MASK2h BN_MASK2h1 BN_MASK2l
31 BN_TBIT BN_ULLONG 31 BN_TBIT BN_ULLONG
32 )], 32 )],
33 conf => [qw(
34 conf_st conf_method_st
35 )],
33 evp => [qw( 36 evp => [qw(
34 ASN1_PKEY_CTRL_CMS_ENVELOPE ASN1_PKEY_CTRL_CMS_RI_TYPE 37 ASN1_PKEY_CTRL_CMS_ENVELOPE ASN1_PKEY_CTRL_CMS_RI_TYPE
35 ASN1_PKEY_CTRL_CMS_SIGN 38 ASN1_PKEY_CTRL_CMS_SIGN
@@ -236,6 +239,7 @@ try_again:
236 # Uninteresting lines. 239 # Uninteresting lines.
237 240
238 if (/^\s*$/ || 241 if (/^\s*$/ ||
242 /^DECLARE_LHASH_OF\(\w+\);$/ ||
239 /^DECLARE_STACK_OF\(\w+\)$/ || 243 /^DECLARE_STACK_OF\(\w+\)$/ ||
240 /^DECLARE_PKCS12_STACK_OF\(\w+\)$/ || 244 /^DECLARE_PKCS12_STACK_OF\(\w+\)$/ ||
241 /^TYPEDEF_D2I2D_OF\(\w+\);$/ || 245 /^TYPEDEF_D2I2D_OF\(\w+\);$/ ||
@@ -288,7 +292,7 @@ try_again:
288 print "D- $line\n" if $verbose; 292 print "D- $line\n" if $verbose;
289 next; 293 next;
290 } 294 }
291 if ($id =~ /^(?:ASN1|BIO|BN|EVP|X509(?:V3)?)_[FR]_\w+$/) { 295 if ($id =~ /^(?:ASN1|BIO|BN|CONF|EVP|X509(?:V3)?)_[FR]_\w+$/) {
292 print "D- $line\n" if $verbose; 296 print "D- $line\n" if $verbose;
293 next; 297 next;
294 } 298 }