mod_posix: Fix for removing the pidfile on exit

remotes/origin/sasl
Matthew Wild 17 years ago
parent 9475023446
commit 580571ef6a
  1. 2
      plugins/mod_posix.lua

@ -18,7 +18,7 @@ local pidfile_written;
local function remove_pidfile()
if pidfile_written then
os.remove(pidfile);
os.remove(pidfile_written);
pidfile_written = nil;
end
end

Loading…
Cancel
Save