# HG changeset patch # User Kim Alvefur # Date 1348090165 -7200 # Node ID 9ca67015ba0e425c5c9a51b876303523d79dfee6 # Parent 5b600514f654cde7f2562f9d7133ea71ff65793d prosodyctl: Fix copypaste error diff -r 5b600514f654 -r 9ca67015ba0e prosodyctl --- a/prosodyctl Wed Sep 19 23:26:38 2012 +0200 +++ b/prosodyctl Wed Sep 19 23:29:25 2012 +0200 @@ -724,7 +724,7 @@ 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);