From e7ec1cdb43fc07966043909387e245c9b9775717 Mon Sep 17 00:00:00 2001 From: schwarze Date: Tue, 8 Aug 2023 13:59:23 +0000 Subject: [PATCH] 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. --- regress/lib/libcrypto/man/check_complete.pl | 9 +++++++++ 1 file changed, 9 insertions(+) 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; -- 2.20.1