From e0c2cbefc36c066a3f219f5b65f50e9c36f1b7c2 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Fri, 16 Jan 2009 05:40:40 +0000 Subject: Fix for pposix version detection --- plugins/mod_posix.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins') diff --git a/plugins/mod_posix.lua b/plugins/mod_posix.lua index 0dd92072..6e619c53 100644 --- a/plugins/mod_posix.lua +++ b/plugins/mod_posix.lua @@ -1,8 +1,8 @@ -local pposix_version = "0.3.0"; +local want_pposix_version = "0.3.0"; local pposix = assert(require "util.pposix"); -if pposix._VERSION ~= want_pposix_version then log("warn", "Unknown version (%s) of binary pposix module, expected %s", tostring(pposix._VERSION), pposix_version); end +if pposix._VERSION ~= want_pposix_version then log("warn", "Unknown version (%s) of binary pposix module, expected %s", tostring(pposix._VERSION), want_pposix_version); end local config_get = require "core.configmanager".get; local logger_set = require "util.logger".setwriter; -- cgit v1.2.3