aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2010-02-21 16:42:26 +0000
committerMatthew Wild <mwild1@gmail.com>2010-02-21 16:42:26 +0000
commit1d6033d805306314122c29acbe479d855438a6ec (patch)
tree8ff50c4982c2fd40fd29acc58b568856fcb87b73 /tools
parentee29e24da256d2e51f33dde222dc7053af5794cd (diff)
downloadprosody-1d6033d805306314122c29acbe479d855438a6ec.tar.gz
prosody-1d6033d805306314122c29acbe479d855438a6ec.zip
ejabberdsql2prosody: Don't print password of imported accounts (thanks azerttyu)
Diffstat (limited to 'tools')
-rw-r--r--tools/ejabberdsql2prosody.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ejabberdsql2prosody.lua b/tools/ejabberdsql2prosody.lua
index f652af5b..0e5dd0c4 100644
--- a/tools/ejabberdsql2prosody.lua
+++ b/tools/ejabberdsql2prosody.lua
@@ -254,7 +254,7 @@ end
for i, row in ipairs(t["users"] or NULL) do
local node, password = row.username, row.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)