From: Tom Hughes Date: Sat, 8 Feb 2020 15:54:40 +0000 (+0000) Subject: Fix syntax error in SSHFP include X-Git-Url: https://git.openstreetmap.org/dns.git/commitdiff_plain/9883347e9cacf46736559f287463b955e51fea5c Fix syntax error in SSHFP include --- diff --git a/bin/mksshfp b/bin/mksshfp index 56c7bbb..e4bc8ed 100755 --- a/bin/mksshfp +++ b/bin/mksshfp @@ -18,7 +18,7 @@ if (-f "/etc/ssh/ssh_known_hosts") my $type = $3; my $value = $4; - print SSHFP_JS qq| SSHFP("${host}", ${algorithm}, ${type}, "${value}");\n|; + print SSHFP_JS qq| SSHFP("${host}", ${algorithm}, ${type}, "${value}"),\n|; } else {