aboutsummaryrefslogtreecommitdiffstats
path: root/prosodyctl
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-01-08 21:20:00 +0100
committerKim Alvefur <zash@zash.se>2013-01-08 21:20:00 +0100
commit7855128caa40d1b681152b92e44ec5792926f69d (patch)
tree89e8049608d0d5cebf012907313f014b93ea0a06 /prosodyctl
parent2b0081486e64248a80141d0b373da7c24d009c70 (diff)
downloadprosody-7855128caa40d1b681152b92e44ec5792926f69d.tar.gz
prosody-7855128caa40d1b681152b92e44ec5792926f69d.zip
prosodyctl, prosody.cfg.lua.dist, certs/Makefile: Use .crt as suffix for certificates everywhere (thanks jasperixla)
Diffstat (limited to 'prosodyctl')
-rwxr-xr-xprosodyctl2
1 files changed, 1 insertions, 1 deletions
diff --git a/prosodyctl b/prosodyctl
index 97232e5c..134624b2 100755
--- a/prosodyctl
+++ b/prosodyctl
@@ -723,7 +723,7 @@ end
function cert_commands.generate(arg)
if #arg >= 1 and arg[1] ~= "--help" then
- local cert_filename = (CFG_DATADIR or ".") .. "/" .. arg[1] .. ".cert";
+ local cert_filename = (CFG_DATADIR or ".") .. "/" .. arg[1] .. ".crt";
if ask_overwrite(cert_filename) then
return nil, cert_filename;
end