summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/regress/lib/libcrypto/man/check_complete.pl9
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}
446close $in_fh; 455close $in_fh;