From 82eb67b40025608aa856322c9c475dc59577b4d8 Mon Sep 17 00:00:00 2001 From: "Adrian C. (anrxc)" Date: Thu, 28 Oct 2010 20:16:18 +0200 Subject: wifi: removed spurious bracket from SSID regexp --- widgets/wifi.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'widgets/wifi.lua') diff --git a/widgets/wifi.lua b/widgets/wifi.lua index 4f389d0..f2e2b7d 100644 --- a/widgets/wifi.lua +++ b/widgets/wifi.lua @@ -57,7 +57,7 @@ local function worker(format, warg) -- Output differs from system to system, some stats can be -- separated by =, and not all drivers report all stats winfo["{ssid}"] = -- SSID can have almost anything in it - string.match(iw, 'ESSID[=:]"([%w%p]+[%s%w%p]*]*)"') or winfo["{ssid}"] + string.match(iw, 'ESSID[=:]"([%w%p]+[%s%w%p]*)"') or winfo["{ssid}"] winfo["{mode}"] = -- Modes are simple, but also match the "-" in Ad-Hoc string.match(iw, "Mode[=:]([%w%-]*)") or winfo["{mode}"] winfo["{chan}"] = -- Channels are plain digits -- cgit v1.2.3