diff options
author | Kim Alvefur <zash@zash.se> | 2024-11-16 14:35:36 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2024-11-16 14:35:36 +0100 |
commit | 4bf9c26a2669b795ab33a22888914e8f72b8fa19 (patch) | |
tree | 663fa929f28be7ff335826776e59200095a1439d /core/loggingmanager.lua | |
parent | 35e92231f8c0f557b556556c6e2b07c84bfed14a (diff) | |
download | prosody-4bf9c26a2669b795ab33a22888914e8f72b8fa19.tar.gz prosody-4bf9c26a2669b795ab33a22888914e8f72b8fa19.zip |
core.loggingmanager: Bump expected util.pposix version
Otherwise no syslog or console detection
Diffstat (limited to 'core/loggingmanager.lua')
-rw-r--r-- | core/loggingmanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/loggingmanager.lua b/core/loggingmanager.lua index d33eef36..1717f059 100644 --- a/core/loggingmanager.lua +++ b/core/loggingmanager.lua @@ -20,7 +20,7 @@ local config = require "prosody.core.configmanager"; local logger = require "prosody.util.logger"; local have_pposix, pposix = pcall(require, "prosody.util.pposix"); -have_pposix = have_pposix and pposix._VERSION == "0.4.0"; +have_pposix = have_pposix and pposix._VERSION == "0.4.1"; local _ENV = nil; -- luacheck: std none |