aboutsummaryrefslogtreecommitdiff
path: root/widgets/wifi.lua
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@higgsboson.tk>2014-11-12 23:43:24 +0100
committerAdrian C. (anrxc) <anrxc@sysphere.org>2014-11-15 22:03:12 +0100
commit336ce9bbd7c620226d0ef01ba58c02be12f7b90e (patch)
tree5b0a621678799fcbb68add662b937087354989eb /widgets/wifi.lua
parent50fd2334b6a720f798782f7690287b71642cb9a8 (diff)
downloadvicious-legacy-336ce9bbd7c620226d0ef01ba58c02be12f7b90e.tar.xz
shell escape variables before passing them to the shell
Signed-off-by: Adrian C. (anrxc) <anrxc@sysphere.org>
Diffstat (limited to 'widgets/wifi.lua')
-rw-r--r--widgets/wifi.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/wifi.lua b/widgets/wifi.lua
index 15666e5..973f109 100644
--- a/widgets/wifi.lua
+++ b/widgets/wifi.lua
@@ -58,7 +58,7 @@ local function worker(format, warg)
end
-- Get data from iwconfig where available
- local f = io.popen(iwconfig .." ".. warg .. " 2>&1")
+ local f = io.popen(iwconfig .." ".. helpers.shellquote(warg) .. " 2>&1")
local iw = f:read("*all")
f:close()