aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_version.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-10-06 16:32:37 +0200
committerKim Alvefur <zash@zash.se>2018-10-06 16:32:37 +0200
commitcf64256f73c7ab9d45b6180d84ab414bad567fe9 (patch)
tree08e5d7067fbf3c9d77524383cdc4c991e681fa8f /plugins/mod_version.lua
parentfde87c287898215b6a9b8a193447393fa4640e73 (diff)
downloadprosody-cf64256f73c7ab9d45b6180d84ab414bad567fe9.tar.gz
prosody-cf64256f73c7ab9d45b6180d84ab414bad567fe9.zip
mod_version: Rename confusingly named variable
Maybe this meant the version of the OS, but it's still confusing.
Diffstat (limited to 'plugins/mod_version.lua')
-rw-r--r--plugins/mod_version.lua16
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/mod_version.lua b/plugins/mod_version.lua
index d434792c..71730ba9 100644
--- a/plugins/mod_version.lua
+++ b/plugins/mod_version.lua
@@ -10,7 +10,7 @@ local st = require "util.stanza";
module:add_feature("jabber:iq:version");
-local version;
+local platform;
local query = st.stanza("query", {xmlns = "jabber:iq:version"})
:text_tag("name", "Prosody")
@@ -18,24 +18,24 @@ local query = st.stanza("query", {xmlns = "jabber:iq:version"})
if not module:get_option_boolean("hide_os_type") then
if os.getenv("WINDIR") then
- version = "Windows";
+ platform = "Windows";
else
local os_version_command = module:get_option_string("os_version_command");
local ok, pposix = pcall(require, "util.pposix");
if not os_version_command and (ok and pposix and pposix.uname) then
- version = pposix.uname().sysname;
+ platform = pposix.uname().sysname;
end
- if not version then
+ if not platform then
local uname = io.popen(os_version_command or "uname");
if uname then
- version = uname:read("*a");
+ platform = uname:read("*a");
end
uname:close();
end
end
- if version then
- version = version:match("^%s*(.-)%s*$") or version;
- query:text_tag("os", version);
+ if platform then
+ platform = platform:match("^%s*(.-)%s*$") or platform;
+ query:text_tag("os", platform);
end
end