Merge 0.10->trunk

This commit is contained in:
Kim Alvefur 2017-07-06 11:24:36 +02:00
commit a65cd04e35
5 changed files with 18 additions and 2 deletions

View file

@ -158,6 +158,11 @@ Use the specified config file instead of the default.
.RS
.RE
.TP
.B \f[C]\-\-root\f[]
Don\[aq]t drop root privileges.
.RS
.RE
.TP
.B \f[C]\-\-help\f[]
Display help text for the specified command.
.RS

View file

@ -137,6 +137,9 @@ OPTIONS
`--config filename`
: Use the specified config file instead of the default.
`--root`
: Don't drop root privileges.
`--help`
: Display help text for the specified command.

View file

@ -141,7 +141,7 @@ module:hook("iq-set/self/"..xmlns_mam..":query", function(event)
limit = qmax + 1;
before = before; after = after;
reverse = reverse;
total = use_total;
total = use_total or qmax == 0;
});
if not data then

View file

@ -62,7 +62,13 @@ end
function archive:find(username, query)
local items, err = datamanager.list_load(username, host, self.store);
if not items then return items, err; end
if not items then
if err then
return items, err;
else
return function () end, 0;
end
end
local count = #items;
local i = 0;
if query then

View file

@ -932,6 +932,8 @@ function commands.cert(arg)
return 1;
end
return cert_commands[subcmd](arg);
elseif subcmd == "check" then
return commands.check({"certs"});
end
end
show_usage("cert config|request|generate|key|import", "Helpers for generating X.509 certificates and keys.")