From: Matthew Wild Date: Sun, 21 Feb 2010 16:42:26 +0000 (+0000) Subject: ejabberdsql2prosody: Don't print password of imported accounts (thanks azerttyu) X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=66bcb01c3f8fb784349fcaf30cbdcae13804559b;p=prosody.git ejabberdsql2prosody: Don't print password of imported accounts (thanks azerttyu) --- 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)