From dda51b1e34c3c3e5f8fe7f08616e125812da1d5b Mon Sep 17 00:00:00 2001 From: "Adrian C. (anrxc)" Date: Fri, 12 Mar 2010 04:21:11 +0100 Subject: net: remove redudant string.match call --- net.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'net.lua') diff --git a/net.lua b/net.lua index d477248..365d3c6 100644 --- a/net.lua +++ b/net.lua @@ -33,8 +33,8 @@ local function worker(format) for line in f:lines() do -- Match wmaster0 as well as rt0 (multiple leading spaces) - if string.match(line, "^[%s]?[%s]?[%s]?[%s]?[%w]+:") then - local name = string.match(line, "^[%s]?[%s]?[%s]?[%s]?([%w]+):") + local name = string.match(line, "^[%s]?[%s]?[%s]?[%s]?([%w]+):") + if name ~= nil then -- Received bytes, first value after the name local recv = tonumber(string.match(line, ":[%s]*([%d]+)")) -- Transmited bytes, 7 fields from end of the line -- cgit v1.2.3