From cf64256f73c7ab9d45b6180d84ab414bad567fe9 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sat, 6 Oct 2018 16:32:37 +0200 Subject: mod_version: Rename confusingly named variable Maybe this meant the version of the OS, but it's still confusing. --- plugins/mod_version.lua | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'plugins/mod_version.lua') 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 -- cgit v1.2.3