aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-11-11 10:02:58 +0100
committerRichard Levitte <levitte@openssl.org>2016-11-11 13:07:37 +0100
commitc2e1ec49326bece462bd3a638b2039d0c84a4751 (patch)
tree44ddda0dd0a4ee65adbc5f8756766526169fe96f /util
parenta9c85ceaca37b6b4d7e4c0c13c4b75a95561c2f6 (diff)
downloadopenssl-c2e1ec49326bece462bd3a638b2039d0c84a4751.tar.gz
Fix typo in util/process_docs.pl
The links weren't properly terminated with a " Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1901)
Diffstat (limited to 'util')
-rw-r--r--util/process_docs.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/process_docs.pl b/util/process_docs.pl
index e1d479d91a..edb7ca6e8d 100644
--- a/util/process_docs.pl
+++ b/util/process_docs.pl
@@ -102,7 +102,7 @@ foreach my $section (sort @{$options{section}}) {
if $options{debug};
unless ($options{"dry-run"}) {
@output = `$generate`;
- map { s|href="http://man\.he\.net/(man\d/[^"]+)(?:\.html)?"|href="../$1.html|g; } @output
+ map { s|href="http://man\.he\.net/(man\d/[^"]+)(?:\.html)?"|href="../$1.html"|g; } @output
if $options{type} eq "html";
}
print STDERR "DEBUG: Done processing\n" if $options{debug};