From 4c2db7c1128484318c67f7fa04ae1f42847890bc Mon Sep 17 00:00:00 2001 From: schwarze <> Date: Tue, 8 Aug 2023 13:59:23 +0000 Subject: 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. --- src/regress/lib/libcrypto/man/check_complete.pl | 9 +++++++++ 1 file changed, 9 insertions(+) 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: $_ .= <$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; -- cgit v1.2.3-55-g6feb