Software /
code /
prosody
Changeset
8168:45be94611593
Merge 0.10->trunk
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 13 Jun 2017 20:14:06 +0200 |
parents | 8165:e564f13b9582 (current diff) 8167:39188851811c (diff) |
children | 8169:a6574fdf8734 |
files | plugins/mod_posix.lua |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_posix.lua Tue Jun 13 16:38:53 2017 +0200 +++ b/plugins/mod_posix.lua Tue Jun 13 20:14:06 2017 +0200 @@ -11,7 +11,8 @@ 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. Perhaps you need to recompile?", tostring(pposix._VERSION), want_pposix_version); + 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 have_signal, signal = pcall(require, "util.signal"); @@ -112,7 +113,7 @@ end local syslog_opened; -function syslog_sink_maker(config) +function syslog_sink_maker(config) -- luacheck: ignore 212/config if not syslog_opened then pposix.syslog_open("prosody", module:get_option_string("syslog_facility")); syslog_opened = true;