diff options
author | Steven Barth <steven@midlink.org> | 2008-08-17 20:54:26 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-08-17 20:54:26 +0000 |
commit | 385c63d4fb5f890ebf23223c7e791f7ee5a9aec7 (patch) | |
tree | 64eb67a92f0eb878935238f47be0c9f7cbc3de09 /applications/luci-olsr/luasrc/controller/olsr.lua | |
parent | b0144108a8affb16ed7731608c110a70aac044db (diff) |
Attempt #3
Diffstat (limited to 'applications/luci-olsr/luasrc/controller/olsr.lua')
-rw-r--r-- | applications/luci-olsr/luasrc/controller/olsr.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/applications/luci-olsr/luasrc/controller/olsr.lua b/applications/luci-olsr/luasrc/controller/olsr.lua index 577f596ca..96226d83e 100644 --- a/applications/luci-olsr/luasrc/controller/olsr.lua +++ b/applications/luci-olsr/luasrc/controller/olsr.lua @@ -156,11 +156,11 @@ function fetch_txtinfo(otable) local data = {} - local tables = luci.util.split(luci.util.trim(rawdata), "\n\n") + local tables = luci.util.split(luci.util.trim(rawdata), "\r?\n\r?\n", nil, true) for i, tbl in ipairs(tables) do - local lines = luci.util.split(tbl, "\n") + local lines = luci.util.split(tbl, "\r?\n", nil, true) local name = table.remove(lines, 1):sub(8) local keys = luci.util.split(table.remove(lines, 1), "\t") local split = #keys - 1 @@ -178,7 +178,7 @@ function fetch_txtinfo(otable) data[name][j].LinkQuality, data[name][j].NLQ, data[name][j].ETX = - data[name][j].Linkcost:match("(.*)/(.*)\t(.*)") + data[name][j].Linkcost:match("([%w.]+)/([%w.]+)[%s]+([%w.]+)") end end end |