mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.unbound: Don't pass error as logger formatting string
This could cause weirdness if the error contains formatting options, but should be reasonably safe with util.format
This commit is contained in:
parent
a698496ef2
commit
b4403aaddd
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ local function lookup(callback, qname, qtype, qclass)
|
|||
if ret then
|
||||
waiting_queries[ret] = callback;
|
||||
else
|
||||
log("warn", err);
|
||||
log("warn", "Resolver error: %s", err);
|
||||
end
|
||||
return ret, err;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue