From 9883347e9cacf46736559f287463b955e51fea5c Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Sat, 8 Feb 2020 15:54:40 +0000 Subject: [PATCH] Fix syntax error in SSHFP include --- bin/mksshfp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.43.2