Software /
code /
prosody
Changeset
1131:83a150e3b3bb
Merge with 0.4
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 06 May 2009 21:45:25 +0100 |
parents | 1126:f6dc334d9836 (current diff) 1130:442c87de8e2d (diff) |
children | 1132:3a63efe285c2 |
files | |
diffstat | 3 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/.hgtags Tue May 05 21:13:09 2009 +0500 +++ b/.hgtags Wed May 06 21:45:25 2009 +0100 @@ -22,3 +22,4 @@ 13ae298c67d78485f1d795fcc7ffeb2057876fb7 0.3.0 84202314ab7f974f7e3b5706e65ddadb9b99274b 0.4.0 4aff205cc4cd5e1e22f5130fecc47d24be1ee5bf 0.4.0 +b2e548344d61ebbfd1474baedc5aa187f874948a 0.4.1
--- a/util/prosodyctl.lua Tue May 05 21:13:09 2009 +0500 +++ b/util/prosodyctl.lua Wed May 06 21:45:25 2009 +0100 @@ -9,6 +9,9 @@ local io, os = io, os; local tostring, tonumber = tostring, tonumber; + +local CFG_SOURCEDIR = _G.CFG_SOURCEDIR; + module "prosodyctl" function adduser(params)
--- a/util/serialization.lua Tue May 05 21:13:09 2009 +0500 +++ b/util/serialization.lua Wed May 06 21:45:25 2009 +0100 @@ -52,7 +52,8 @@ elseif type(o) == "boolean" then func(t, (o and "true" or "false")); else - log("warn", "cannot serialize a %s: %s", type(o), debug_traceback()) + log("error", "cannot serialize a %s: %s", type(o), debug_traceback()) + func(t, "nil,\n"); end end