wifi: removed spurious bracket from SSID regexp

This commit is contained in:
Adrian C. (anrxc) 2010-10-28 20:16:18 +02:00
parent 304fa336ed
commit 82eb67b400
1 changed files with 1 additions and 1 deletions

View File

@ -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