diff options
author | Matthew Wild <mwild1@gmail.com> | 2014-08-28 12:05:18 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2014-08-28 12:05:18 +0100 |
commit | 580f0a2a97b67c80dcb77d386bf469912c5ddfcb (patch) | |
tree | f9b41c73e3cda1b1f3ffe63a3921967eea4a20d6 /plugins/mod_posix.lua | |
parent | af8588572ea3aef8d7c799315adaaf7c7bb64c4f (diff) | |
parent | e5cad1e21d8d45fb12dc0f3d53767c7fb875c96c (diff) | |
download | prosody-580f0a2a97b67c80dcb77d386bf469912c5ddfcb.tar.gz prosody-580f0a2a97b67c80dcb77d386bf469912c5ddfcb.zip |
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_posix.lua')
-rw-r--r-- | plugins/mod_posix.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_posix.lua b/plugins/mod_posix.lua index 89d6d2b6..c9b9f3aa 100644 --- a/plugins/mod_posix.lua +++ b/plugins/mod_posix.lua @@ -80,7 +80,7 @@ local function write_pidfile() if pidfile_handle then remove_pidfile(); end - pidfile = module:get_option("pidfile"); + pidfile = module:get_option_string("pidfile"); if pidfile then local err; local mode = stat(pidfile) and "r+" or "w+"; |