aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2010-02-21 16:57:06 +0000
committerMatthew Wild <mwild1@gmail.com>2010-02-21 16:57:06 +0000
commita12fea9a9b9e1f2c302213e77e646ccc64b3db21 (patch)
tree151ae9ce35730a52d4f2d4c0bddb68c7d67a3286 /tools
parent1d6033d805306314122c29acbe479d855438a6ec (diff)
downloadprosody-a12fea9a9b9e1f2c302213e77e646ccc64b3db21.tar.gz
prosody-a12fea9a9b9e1f2c302213e77e646ccc64b3db21.zip
ejabberd2prosody: Don't print passwords of imported accounts
Diffstat (limited to 'tools')
-rwxr-xr-xtools/ejabberd2prosody.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ejabberd2prosody.lua b/tools/ejabberd2prosody.lua
index 7b19260d..d0c22df7 100755
--- a/tools/ejabberd2prosody.lua
+++ b/tools/ejabberd2prosody.lua
@@ -49,7 +49,7 @@ function vcard(node, host, stanza)
end
function password(node, host, password)
local ret, err = dm.store(node, host, "accounts", {password = password});
- print("["..(err or "success").."] accounts: "..node.."@"..host.." = "..password);
+ print("["..(err or "success").."] accounts: "..node.."@"..host);
end
function roster(node, host, jid, item)
local roster = dm.load(node, host, "roster") or {};