Skip to content

Commit 915f071

Browse files
author
schwarze
committed
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.
1 parent ee52c24 commit 915f071

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/regress/lib/libcrypto/man/check_complete.pl

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,15 @@
441441
$_ .= <$in_fh>;
442442
goto try_again;
443443
}
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+
}
444453
die "parse error: $_";
445454
}
446455
close $in_fh;

0 commit comments

Comments
 (0)