diff options
author | Kim Alvefur <zash@zash.se> | 2016-02-28 18:45:27 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-02-28 18:45:27 +0100 |
commit | 838155583d05d55b73895d16bc6b3b128da8fea7 (patch) | |
tree | c424f41eaf9df8010eeebe843eff76cb83e5c374 | |
parent | 4ae28434fa7f40619b6f4426f89f8e14ee900ca5 (diff) | |
download | prosody-838155583d05d55b73895d16bc6b3b128da8fea7.tar.gz prosody-838155583d05d55b73895d16bc6b3b128da8fea7.zip |
prosodyctl: Fix typo (thanks av6)
-rwxr-xr-x | prosodyctl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1223,7 +1223,7 @@ function commands.check(arg) print(" No 'certificate' found for "..host) cert_ok = false elseif not ssl_config.key then - print(" No 'key' found for for "..host) + print(" No 'key' found for "..host) cert_ok = false else local key, err = io.open(ssl_config.key); -- Permissions check only |