diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-01-12 15:35:36 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-01-12 15:35:36 +0000 |
commit | cafffad5b85f50aab315bec3867d9eec4f4d50f1 (patch) | |
tree | 52cc33fd6dacef7ac21dcbe1f529c9f77ef5eb44 | |
parent | fcfaa6536e3833399fcac7379bb2f4dba7a68497 (diff) | |
download | prosody-cafffad5b85f50aab315bec3867d9eec4f4d50f1.tar.gz prosody-cafffad5b85f50aab315bec3867d9eec4f4d50f1.zip |
util.pposix, mod_posix, prosodyctl: Bump pposix version to 0.3.3 for mkdir
-rw-r--r-- | plugins/mod_posix.lua | 2 | ||||
-rwxr-xr-x | prosodyctl | 2 | ||||
-rw-r--r-- | util-src/pposix.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/plugins/mod_posix.lua b/plugins/mod_posix.lua index 2a724fb7..ab3a8a26 100644 --- a/plugins/mod_posix.lua +++ b/plugins/mod_posix.lua @@ -7,7 +7,7 @@ -- -local want_pposix_version = "0.3.2"; +local want_pposix_version = "0.3.3"; 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", tostring(pposix._VERSION), want_pposix_version); end @@ -68,7 +68,7 @@ require "util.datamanager".set_data_path(data_path); -- Switch away from root and into the prosody user -- local switched_user, current_uid; -local want_pposix_version = "0.3.2"; +local want_pposix_version = "0.3.3"; local ok, pposix = pcall(require, "util.pposix"); if ok and pposix then diff --git a/util-src/pposix.c b/util-src/pposix.c index 9627dab7..8c1dbcc6 100644 --- a/util-src/pposix.c +++ b/util-src/pposix.c @@ -13,7 +13,7 @@ * POSIX support functions for Lua */ -#define MODULE_VERSION "0.3.2" +#define MODULE_VERSION "0.3.3" #include <stdlib.h> #include <math.h> |