From: schwarze Date: Tue, 8 Aug 2023 13:59:23 +0000 (+0000) Subject: X509_STORE_CTX_get_check_issued(3) is weird. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=e7ec1cdb43fc07966043909387e245c9b9775717;p=openbsd 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. --- diff --git a/regress/lib/libcrypto/man/check_complete.pl b/regress/lib/libcrypto/man/check_complete.pl index 76f031eac05..4f5d6d12502 100755 --- a/regress/lib/libcrypto/man/check_complete.pl +++ b/regress/lib/libcrypto/man/check_complete.pl @@ -441,6 +441,15 @@ try_again: $_ .= <$in_fh>; goto try_again; } + # The name of the function return type is so long + # that it requires a line break afterwards. + if (/^\w{30,}$/) { + my $next_line = <$in_fh>; + if ($next_line =~ /^ {4}\w/) { + $_ .= $next_line; + goto try_again; + } + } die "parse error: $_"; } close $in_fh;