diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2023-05-02 13:15:06 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2023-05-02 13:15:06 +0000 |
commit | bdd59976deeceb45e5a797175d7a2dcbf6c1a604 (patch) | |
tree | 40be9abbf679a8660b851ddf7a9d1e76f332ae43 /regress/lib/libcrypto | |
parent | 16511f7e5c021af864ed98129c8682623ddf5309 (diff) |
Mark the BIO_F_* function codes as intentionally undocumented
and for now, skip the the BIO_R_* reason codes.
It looks like all public symbols in the BIO library
are now documented or marked as intentionally undocumented.
Diffstat (limited to 'regress/lib/libcrypto')
-rwxr-xr-x | regress/lib/libcrypto/man/check_complete.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/regress/lib/libcrypto/man/check_complete.pl b/regress/lib/libcrypto/man/check_complete.pl index f4b63a6f2f4..b937c19604c 100755 --- a/regress/lib/libcrypto/man/check_complete.pl +++ b/regress/lib/libcrypto/man/check_complete.pl @@ -272,7 +272,7 @@ try_again: print "D- $line\n" if $verbose; next; } - if ($id =~ /^(?:ASN1|BN|X509(?:V3)?)_[FR]_\w+$/) { + if ($id =~ /^(?:ASN1|BIO|BN|X509(?:V3)?)_[FR]_\w+$/) { print "D- $line\n" if $verbose; next; } |