mod_posix: Use path variant of config API for pidfile option

This commit is contained in:
Kim Alvefur 2017-03-21 12:08:29 +01:00
parent c2c4f7fbc4
commit 593b5348ef

View file

@ -80,7 +80,7 @@ local function write_pidfile()
if pidfile_handle then
remove_pidfile();
end
pidfile = module:get_option_string("pidfile");
pidfile = module:get_option_path("pidfile", nil, "data");
if pidfile then
local err;
local mode = stat(pidfile) and "r+" or "w+";