diff options
| author | schwarze <> | 2023-08-08 13:59:23 +0000 |
|---|---|---|
| committer | schwarze <> | 2023-08-08 13:59:23 +0000 |
| commit | 4c2db7c1128484318c67f7fa04ae1f42847890bc (patch) | |
| tree | 3d8dfda369802c485e52968a429f5276c4a35580 /src | |
| parent | aa236454370f4590ecc9b0b63b45ee85472147c3 (diff) | |
| download | openbsd-4c2db7c1128484318c67f7fa04ae1f42847890bc.tar.gz openbsd-4c2db7c1128484318c67f7fa04ae1f42847890bc.tar.bz2 openbsd-4c2db7c1128484318c67f7fa04ae1f42847890bc.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.
Diffstat (limited to 'src')
| -rwxr-xr-x | src/regress/lib/libcrypto/man/check_complete.pl | 9 |
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 | } |
| 446 | close $in_fh; | 455 | close $in_fh; |
