diff options
author | Kim Alvefur <zash@zash.se> | 2012-09-19 23:29:25 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2012-09-19 23:29:25 +0200 |
commit | 147744b51294b08732f0760324b003997d9b04ed (patch) | |
tree | 7a540e82b8511473503d4b54b6a338e12c70a396 /prosodyctl | |
parent | 1c8f6fd030903f6caefaf62ce66cafae0d583f5c (diff) | |
download | prosody-147744b51294b08732f0760324b003997d9b04ed.tar.gz prosody-147744b51294b08732f0760324b003997d9b04ed.zip |
prosodyctl: Fix copypaste error
Diffstat (limited to 'prosodyctl')
-rwxr-xr-x | prosodyctl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -725,7 +725,7 @@ function cert_commands.generate(arg) if #arg >= 1 and arg[1] ~= "--help" then local cert_filename = (CFG_DATADIR or ".") .. "/" .. arg[1] .. ".cert"; if ask_overwrite(cert_filename) then - return nil, conf_filename; + return nil, cert_filename; end local _, key_filename = cert_commands.key({arg[1]}); local _, conf_filename = cert_commands.config(arg); |