summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschwarze <>2023-08-08 13:59:23 +0000
committerschwarze <>2023-08-08 13:59:23 +0000
commit915f071bda08958e00815f9f1f63a69690cf2330 (patch)
tree3d8dfda369802c485e52968a429f5276c4a35580
parentee52c24f5bd67428aaba2f1ca699029a1a069cf6 (diff)
downloadopenbsd-915f071bda08958e00815f9f1f63a69690cf2330.tar.gz
openbsd-915f071bda08958e00815f9f1f63a69690cf2330.tar.bz2
openbsd-915f071bda08958e00815f9f1f63a69690cf2330.zip
X509_STORE_CTX_get_check_issued(3) is weird.
Both the function return type and the function name are so long that for displaying the function prototype, a line break is needed after the function return type.
-rwxr-xr-xsrc/regress/lib/libcrypto/man/check_complete.pl9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/regress/lib/libcrypto/man/check_complete.pl b/src/regress/lib/libcrypto/man/check_complete.pl
index 76f031eac0..4f5d6d1250 100755
--- a/src/regress/lib/libcrypto/man/check_complete.pl
+++ b/src/regress/lib/libcrypto/man/check_complete.pl
@@ -441,6 +441,15 @@ try_again:
441 $_ .= <$in_fh>; 441 $_ .= <$in_fh>;
442 goto try_again; 442 goto try_again;
443 } 443 }
444 # The name of the function return type is so long
445 # that it requires a line break afterwards.
446 if (/^\w{30,}$/) {
447 my $next_line = <$in_fh>;
448 if ($next_line =~ /^ {4}\w/) {
449 $_ .= $next_line;
450 goto try_again;
451 }
452 }
444 die "parse error: $_"; 453 die "parse error: $_";
445} 454}
446close $in_fh; 455close $in_fh;