mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_posix: Improve error message for a pposix version mismatch
This commit is contained in:
parent
f1adfcc147
commit
0ce5c766ac
1 changed files with 3 additions and 1 deletions
|
@ -10,7 +10,9 @@
|
|||
local want_pposix_version = "0.3.6";
|
||||
|
||||
local pposix = assert(require "util.pposix");
|
||||
if pposix._VERSION ~= want_pposix_version then module:log("warn", "Unknown version (%s) of binary pposix module, expected %s", tostring(pposix._VERSION), want_pposix_version); end
|
||||
if pposix._VERSION ~= want_pposix_version then
|
||||
module:log("warn", "Unknown version (%s) of binary pposix module, expected %s. Perhaps you need to recompile?", tostring(pposix._VERSION), want_pposix_version);
|
||||
end
|
||||
|
||||
local signal = select(2, pcall(require, "util.signal"));
|
||||
if type(signal) == "string" then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue